Time sheet approvals going to all other PMS

Hi all,
We have situation here,
there are 3 projects A,B,C each one of them is having different project manangers. Person1 is available in all the three projects.
Person1 submits time sheet for project A, the time sheet approval is going to all the three PMs A,B,C. So B and C are receiving even if they are not responsible.
what could be the possible issues. We checked all these 3 PMS are not allocated to all projects is one to one here.
We are using NWBC. Please help

Hi Maruti,
Could you please give some technical details..
1) Which time sheet are you using?  - CATS or ESS or PPM Confirmation screens
2) Do you any workflows implemented for time sheet approval? and if yes for which object?
Regards,
Ravi

Similar Messages

  • My ipad does not appear as a device in itunes when connected (1st time trying to sync).  all other apple devices are fine and I have the latest itunes version.

    I have a new ipad2 for xmas .  I have tried to sync the device to itunes and it is not being seen.  I have the latest version of itunes, updated last night, and have several other devices that are seen fine (iphone/ipods).
    When I connect the usb direct to the mac iphoto starts but then that is it - itunes will not recognise the device......
    I have gone thourgh the suggested support help on the apple website and came to the last point - review community ... so here I am!

    What you provided is not everything mentioned.
    Your Mac is running 10.5.8 or later and iTunes 10?
    You are connecting the iPad direct to a USB port on your Mac and you have tried every port?
    You have reinstalled the Apple Mobile Device Service?
    If your Mac is running Snow Leopard - 10.6, have you checked this link?
    http://support.apple.com/kb/TS3540

  • Monthly Time Sheet Dates

    I am building a monthly time sheet. I need all the dates to populate once the initial date is chosen by the user. I have this working properly for each month that has 31 days. For months with 30 days, it populates the first day of the next month. How do I make sure that the only the dates for the month selected are populated?
    Any help is appreciated!
    Tracy

    Hello!
    Thank you for your response, but I can not get it to function properly.
    I added a text field to calculate the number of days.  Here is the script I placed in the text field:
    form1.commentSub.NoofDays::calculate - (FormCalc, client)
    var StartDate = Ref(SubPg1.tableSub.Table1.Row1.Date1)
    var EndDate = Ref(SubPg1.tableSub.Table1.Row2.Date2)
    var MonthStart = Date2Num(Date1.formattedValue, "MM/DD/YYYY")
    var nMonth = Num2Date(MonthStart, "MM")                                                                                                     ; Current Month
    var nDay = Num2Date(MonthStart, "DD")                                           ; Current Day
    var nYear = Num2Date(MonthStart, "YYYY")                                        ; Current Year
    var nFirstDay = Date2Num(Concat(nMonth,"01", nYear), "MM/DD/YYYY")        ; First Day in the current month
    var nLastDay
    var nCountDays = nFirstDay
    StartDate.rawValue = Num2Date(nFirstDay, "MM/DD/YYYY") ; Set first day of month as start date
    ; Determine number of days in the current month
    var nMonthCheckStart = Num2Date(nFirstDay, "MM")
    var nMonthCheckEnd
    for i=0 upto 31 step 1 do
              nCountDays = nCountDays + 1
              nMonthCheckEnd = Num2Date(nCountDays , "MM")
              if(nMonthCheckStart == nMonthCheckEnd) then
                        nLastDay = nCountDays
              endif
    endfor
    EndDate.rawValue = Num2Date(nLastDay, "MM/DD/YYYY") ; Set lastday of month as end date
    $.rawValue = Num2Date(nLastDay, "DD") ; Set number of days this month
    In the date field where the user selects the date. I have this:
    form1.SubPg1.tableSub.Table1.Row1.Date1::exit - (FormCalc, client)
    var dayNum = Date2Num($.formattedValue,"MM/DD/YY")
    Row2.Date2.rawValue = Num2Date(dayNum+1,"MM/DD/YY")
    Row3.Date3.rawValue = Num2Date(dayNum+2,"MM/DD/YY")
    Row4.Date4.rawValue = Num2Date(dayNum+3,"MM/DD/YY")
    Row5.Date5.rawValue = Num2Date(dayNum+4,"MM/DD/YY")
    Row6.Date6.rawValue = Num2Date(dayNum+5,"MM/DD/YY")
    Row7.Date7.rawValue = Num2Date(dayNum+6,"MM/DD/YY")
    Row8.Date8.rawValue = Num2Date(dayNum+7,"MM/DD/YY")
    Row9.Date9.rawValue = Num2Date(dayNum+8,"MM/DD/YY")
    Row10.Date10.rawValue = Num2Date(dayNum+9,"MM/DD/YY")
    Row11.Date11.rawValue = Num2Date(dayNum+10,"MM/DD/YY")
    Row12.Date12.rawValue = Num2Date(dayNum+11,"MM/DD/YY")
    Row13.Date13.rawValue = Num2Date(dayNum+12,"MM/DD/YY")
    Row14.Date14.rawValue = Num2Date(dayNum+13,"MM/DD/YY")
    Row15.Date15.rawValue = Num2Date(dayNum+14,"MM/DD/YY")
    Row16.Date16.rawValue = Num2Date(dayNum+15,"MM/DD/YY")
    Row17.Date17.rawValue = Num2Date(dayNum+16,"MM/DD/YY")
    Row18.Date18.rawValue = Num2Date(dayNum+17,"MM/DD/YY")
    Row19.Date19.rawValue = Num2Date(dayNum+18,"MM/DD/YY")
    Row20.Date20.rawValue = Num2Date(dayNum+19,"MM/DD/YY")
    Row21.Date21.rawValue = Num2Date(dayNum+20,"MM/DD/YY")
    Row22.Date22.rawValue = Num2Date(dayNum+21,"MM/DD/YY")
    Row23.Date23.rawValue = Num2Date(dayNum+22,"MM/DD/YY")
    Row24.Date24.rawValue = Num2Date(dayNum+23,"MM/DD/YY")
    Row25.Date25.rawValue = Num2Date(dayNum+24,"MM/DD/YY")
    Row26.Date26.rawValue = Num2Date(dayNum+25,"MM/DD/YY")
    Row27.Date27.rawValue = Num2Date(dayNum+26,"MM/DD/YY")
    Row28.Date28.rawValue = Num2Date(dayNum+27,"MM/DD/YY")
    Row29.Date29.rawValue = Num2Date(dayNum+28,"MM/DD/YY")
    Row30.Date30.rawValue = Num2Date(dayNum+29,"MM/DD/YY")
    Row31.Date31.rawValue = Num2Date(dayNum+30,"MM/DD/YY")
    Row1.Day1.rawValue = Num2Date(dayNum,"EEE")
    Row2.Day2.rawValue = Num2Date(dayNum+1,"EEE")
    Row3.Day3.rawValue = Num2Date(dayNum+2,"EEE")
    Row4.Day4.rawValue = Num2Date(dayNum+3,"EEE")
    Row5.Day5.rawValue = Num2Date(dayNum+4,"EEE")
    Row6.Day6.rawValue = Num2Date(dayNum+5,"EEE")
    Row7.Day7.rawValue = Num2Date(dayNum+6,"EEE")
    Row8.Day8.rawValue = Num2Date(dayNum+7,"EEE")
    Row9.Day9.rawValue = Num2Date(dayNum+8,"EEE")
    Row10.Day10.rawValue = Num2Date(dayNum+9,"EEE")
    Row11.Day11.rawValue = Num2Date(dayNum+10,"EEE")
    Row12.Day12.rawValue = Num2Date(dayNum+11,"EEE")
    Row13.Day13.rawValue = Num2Date(dayNum+12,"EEE")
    Row14.Day14.rawValue = Num2Date(dayNum+13,"EEE")
    Row15.Day15.rawValue = Num2Date(dayNum+14,"EEE")
    Row16.Day16.rawValue = Num2Date(dayNum+15,"EEE")
    Row17.Day17.rawValue = Num2Date(dayNum+16,"EEE")
    Row18.Day18.rawValue = Num2Date(dayNum+17,"EEE")
    Row19.Day19.rawValue = Num2Date(dayNum+18,"EEE")
    Row20.Day20.rawValue = Num2Date(dayNum+19,"EEE")
    Row21.Day21.rawValue = Num2Date(dayNum+20,"EEE")
    Row22.Day22.rawValue = Num2Date(dayNum+21,"EEE")
    Row23.Day23.rawValue = Num2Date(dayNum+22,"EEE")
    Row24.Day24.rawValue = Num2Date(dayNum+23,"EEE")
    Row25.Day25.rawValue = Num2Date(dayNum+24,"EEE")
    Row26.Day26.rawValue = Num2Date(dayNum+25,"EEE")
    Row27.Day27.rawValue = Num2Date(dayNum+26,"EEE")
    Row28.Day28.rawValue = Num2Date(dayNum+27,"EEE")
    Row29.Day29.rawValue = Num2Date(dayNum+28,"EEE")
    Row30.Day30.rawValue = Num2Date(dayNum+29,"EEE")
    Row31.Day31.rawValue = Num2Date(dayNum+30,"EEE")
    It still adds the beginning date for the following month if the month selected only has 30 days.  
    I am not sure how to attach the file here for you to see.
    Tracy

  • I have been trying to update Bridge CC and it immediately goes to update failed - learn more which I click on and all it give me is download error. retry or contact customer support(49). I have retried about 5 times now. All other updates finished success

    I have been trying to update Bridge CC and it immediately goes to update failed - learn more which I click on and all it give me is download error. retry or contact customer support(49). I have retried about 5 times now. All other updates finished successfully,

    Hi Dennis,
    Please refer to the thread below where this issue has been addressed:
    Bridge Update failed customer support(49)
    Updates failing from CC errors U44M1l216 and 49 - anyone else getting these?
    Installation succeeded but a patch failed
    Regards,
    Sheena

  • Not picking all open items at the time of out going payment(F-53)

    Dear Experts,
    I'm facing the issue at the time of out going payment(F-53)
    At the time of vendor line item display system is showing open items but at the time of out going payment(F-53)
    system is not picking the all open items it is picking only two items
    Pls help
    Regards
    Hari Prasad

    Hi Experts,
    Thnx for Quick response
    As per your instructions, I checked auto payment run here we have done successfully for vendor
    Open items shown in FBL1N but these open items not coming at the time of  out going payment
    I checked SPL GL indictors also
    Regards
    Hari Prasad

  • I purchased Adobe Acrobat Pro XI for my iMac (Mavericks 10.9.4), downloaded it and have attempted to install it 10 or more times. I have done all the usual maintenance steps (repair permissions, repair disk, etc) and it still won't install. All goes well

    I purchased Adobe Acrobat Pro XI for my iMac (Mavericks 10.9.4), downloaded it and have attempted to install it 10 or more times. I have done all the usual maintenance steps (repair permissions, repair disk, etc) and it still won't install. All goes well until the installer gets to "Running Package Scripts" then it stalls or hangs up and does not finish the installation. It runs and runs and runs. It never finishes. I wind up having to force quit the installer. Can anyone point me in the right direction?

    Hi jtento ,
    Kindly enable the Root Account for the MAC and then try the installation there (in the root account). Please find below the URL to enable the root account.
    OS X Mavericks: Enable and disable the root user
    Thanks,
    Vikrantt Singh

  • Mute button goes on all the time

    i find my mute button goes on all the time unless i put the phone in speaker mode.  I believe its the sensor but is there anyway to  fix it without going to the genius bar.
    Also the silent button doesnt work on the side.

    If your silent button doesn't work, and you think the sensor is malfunctioning, just how do you think these can be fixed without going to the genius bar?

  • When i try to print from firefox the printer just spits out a blank sheet of paper. all other programs i try to print from work just fine. what can i do to fix this problem.

    when i thy to print from firefox the printer spits out a blank sheet of paper. all other programs i print from work just fine including internet explorer.
    == This happened ==
    Every time Firefox opened
    == when i installed firefox about a month ago

    See this:
    [http://kb.mozillazine.org/Problems_printing_web_pages#Prints_to_a_small_portion_of_the_page]

  • Access to iCloud goes out daily for the evening - but I still have all other internet functioning

    For the last 4 days, @ about 5 pm Norwegian time, I have no access to my Mail, Cal, or iCloud even in Safari.  Gmail functions. Skype functions, all other internet use functions.  The same happens on my other devices and also to other iCloud users in the house. (we are not on family sharing)  This happens only on our home wifi network.  We are on a satellite wifi.  Any ideas?
    It is very frustrating -
    The service seems to resume around 4 am in the morning.
    Thanks!

    JiveTurkey wrote:
    I still want to keep my Droid, it makes a handy WiFi-ready "micro-tablet" (as I call it), plus I can still play all my NES/SNES/Genesis games on it, I love the QWERTY keyboard for that kind of stuff.
    However, I dropped the phone on a hardwood floor from about 3 feet up, and **BOOM**, screen completely goes out.  The "soft keys" light up, keyboard still lights up.  I can see the two small LED light sources coming from the very bottom of the screen.  When I drag my finger across the screen, I still get the haptic feedback of my phone being "Unlocked".
    I've done battery pull, let it discharge fully, charge it back up, no good.
    So even though this isn't technically my "active phone" anymore, would VZW still be able to do anything to try & get it fixed?  It's obsolete & outdated now (sorry, Droid 1 owners), but this is actually a replacement phone that I've had for less than a year, so wouldn't it still be covered under warranty? 
    If the phone is not currently activated on your line, there is no warranty. Warranty does not cover damage anyhow, you would need insurance for this. You can take it to one of those cell phone repair companies and have them fix it for you, but those are quite pricey.
    Also, I'm pretty sure you can't use WiFi on a phone that is not activated.

  • HT204053 I have multiple family members using one apple id account and all of each others information is going onto each others phones/how do i stop this?

    I have multiple family members using one apple id and all of our data is going onto each others phones/how do i stop this?

    Each person needs to have their own separate Apple ID along with their own separate computer user account and iTunes Library.

  • Since upgrading to FF v4, every time I open a "new window", all other instances of FF windows open, how can I keep this from happening?

    Since I started using FireFox version 4, every time I open a "new window", all other instances of FireFox windows open up. This is annoying as it often covers up instances I am currently using with instances that I don't wish to use right now. I can't seem to find a way to keep this behavior from occurring.

    Try go to '''about:config''' search for '''browser.startup.homepage''' change its value to:
    '''about:home''' - default page<br>
    '''about:blank''' - blank page<br>
    '''url''' - a page that you want
    Also:
    *[https://support.mozilla.org/kb/troubleshoot-firefox-issues-using-safe-mode Firefox in safe mode]
    *[https://support.mozilla.org/kb/reset-firefox-easily-fix-most-problems Reset Firefox]
    *[https://support.mozilla.org/kb/troubleshoot-firefox-issues-caused-malware Problems caused by malwares]
    *[https://support.mozilla.org/kb/how-to-fix-preferences-wont-save Preferences won’t save]
    *[http://kb.mozillazine.org/Preferences_not_saved]

  • I bought new Macbook Pro 13" around two months before .My Apple ID is working on all other things except app store . It is buffering for a lot of time and lastly coming on screen " can not connect to app store " Please help me

    I bought new Macbook Pro 13" around two months before .My Apple ID is working on all other things except app store . It is buffering for a lot of time and lastly coming on screen " can not connect to app store " Please help me

    Have you tried repairing disk permissions : iTunes download error -45054

  • How can I find duplicate photos without going through all 5000  one at a time?

    How can I find duplicate photos withough going through all 5000 one by one?  I have numerous duplications and used to be able to click on Edit and Find Duplicates and could clean up all the duplicates easily.  Now that option is gone.  I still have lots to delete.

    I do backup everything using Carbonite.Please don't tell me it is bad, too :-)  Also, especially with photo files, I do have other backups of those I am concerned about. Probably not the best in the world, but a log better than many people who I know about.
    Again, I really have not seen any problems with MacKeeper.  I imagine that if people do not read and follow instructions, they could have problems. For example, it is possible to scan all your files and see them in order of size. If you start deleting things, without knowing what you're deleting, you could cause trouble. Even when the computer scans for so-called junk files, you can look at them and decide for yourself if they are truly junk. I've never seen any that were not.
    So, I will look at the complaints anyway to see them. I am open to change, although I hope I do not need to drop Mackeeper as it does things like keeping tracking of applications updates that I need. Please note that I definitely am not a MacKeeper employee or anything close. Just using it and happy with the the results.
    I did download the recommend file for finding photo dupes and ran it.  There were very few duplicates, in any case, As I said before, the MacKeeper dupe finder was very slow when I ran it over ALL my files. That was a year ago and it did find many non-text dupes.

  • I was able to copy all my files from my Time Capsule, but that is all they are...files. How do I get my new Mac Mini to emulate my other Mac?

    I was able to copy all my files from my Time Capsule, but that is all they are...files. How do I get my new Mac Mini to emulate my other Mac?

    Doggiemommie,
    Copying files is not a good idea.
    The "other Mac" was backed up onto Time Capsule using the Time Machine. On your new Mac you should restore the old user - rather than copy files manually.
    This usually happens during the initial setup of the new computer or you can do it later using Migration Assistant.
    Please note, it is possible to damage backup file on the Time Capsule when you browse it and copy files manually.
    Hope this explains.
    TZ

  • Whenever I launch a new Google window, Google immediately re-opens all other windows I happen to have open but minimized. I then have to either close or re-minimize each window, one at a time. What a pain!!

    Whenever I launch a new Google window, Google immediately re-opens all other windows I happen to have open but minimized. I then have to either close or re-minimize each window, one at a time. What a pain!!

    Just to address the last point: check your History menu to see whether you have the Restore Previous Session option and use that if you can. If that is grayed out or doesn't restore everything, check the Recently Closed Windows and Recently Closed Tabs lists for other pages.
    The unwanted window may be generated by an add-on. Try disabling ALL nonessential or unrecognized extensions on the Add-ons page. Either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, if in doubt, disable.
    Usually a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Any improvement?
    Here are some other things to check:
    (1) user.js file that changes Firefox startup behavior and overrides your preferences. This article describes how to track that down and delete it if you have one: [[How to fix preferences that won't save]].
    (2) Possible hijacked shortcut. Check the "target" of the desktop icon you use to start Firefox to see whether it lists the unwanted page. To do that:
    right-click the icon > Properties > Shortcut tab
    For 64-bit Windows 7, the Target should be no more and no less than this:
    "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
    (3) Possible undisclosed bundle items. If you have installed any free software recently, check your Windows Control Panel, Uninstall a program for surprises. If you click the "Installed on" column head to group by date, it is easier to spot bundled junk. Remove everything suspicious or unrecognized.
    (4) Supplemental clean up scans. Our support article lists tools other Firefox users have found helpful: [[Troubleshoot Firefox issues caused by malware]].
    Hopefully that cures it.

Maybe you are looking for

  • How big should I allow my SP's to get?

    Hi, I've got a stored procedure which returns entries for a calendar from all over my database by looking at lots of different tables that have date fields. The SP is basically a union of about 10 different selects from various places but I am also d

  • Who can i made a frame from a graphic or photo

    hi all i'd like to build a graphical window such as winamp or jetaudio can i do it in java, if yes how? thank you

  • Photo Directories don't all display (Ipad)

    I'm trying to sync photos from my PC to my Ipad, however iTunes does not recognize all of the photo folders in my My Pictures folder. When I select specific folders, only a few of the folders in the My Pictures directory show up. Any ideas?

  • Does setQueryTimeout still spawn a thread with Microsoft JDBC Driver 4.0?

    Hi, Does setQueryTimeout still spawn a thread with Microsoft JDBC Driver 4.0? This link here indicates this was fixed awhile ago: http://msdn.microsoft.com/en-us/sqlserver/aa937724.aspx However, we are using Microsoft JDBC Driver 4.0 but are noticing

  • Tcp_wrappers value

    I�m getting two different results from the following commands and need to understand why? svcprop �p defaults inetd | grep tcp_wrappers Shows tcp_wrappers=FALSE svcprop �p defaults network/inetd | grep tcp_wrappers Shows tcp_wrappers=TRUE I can chang