Restrict employees from charging time to projects they are not assigned to

Can anyone help me on how tr restrict the employees from charging time to project networks that they are not assigned to?
I have assigned the resource to the project network and can see that in the CAT2 worklist but I am not able to restrict employees from charging time agains projects that they are no assigned to.

You have to validate the data in CATS Userexit.IMG - Cross application components - Time sheet - Customer specific modifications - Create SAP enhancements for the time sheet. Here is a short overview on what they are called and what they do.
CATS0001 (Set up worklist): This one defines a worklist in the upper part of the CATS screen
CATS0002 (Supplement recorded data): Here you can add values to customer defined additional fields or even modify the data entered by the user
CATS0003 (Validate recorded data): This one is to check entries for whatsoever
CATS0004 (Deactivate functions on the interface): CATS got a lot of buttons. Here you can get rid of the ones you don't need.
CATS0005 (Customer field enhancements): You can add fields to CI_CATSDB here to later on use to display or enter additional data
CATS0006 (Validate entire time sheet): Mainly serves to validate the hours entered if you don't use HR
CATS0007 (Subscreen on Initial screen): Customer popup, defines data valid for the entire time sheet(row) 
CATS0008 (Determine recipients for the approval workflow): You can connect CATS to a standard workflow so that superiors can approve times entered before they are transferred (HR, CO, PS...)
CATS0009 (User-Defined Text Fields in the Data Entry Section): You got two 40 character text fields in the data entry part you can fill with this exit - display only
CATS0010 (Display User-Defined Fields in the Worklist): Same as above for the worklist
CATS0011 (Customer-Defined Functions): Add your own functions to the menu
CATS0012 (Customer Subscreen): Define CATS header
CATP0001 (Determine Target Hours): Define your own target hours

Similar Messages

  • When i login to my mac, it opens iTunes, Skype and AIM. I've tried deleting these from the login items, but they are not on the list.  Can anyone help?

    When i login to my mac, it opens iTunes, Skype and AIM. I've tried deleting these from the login items, but they are not on the list.  Can anyone help?

    babowa wrote:
    If you do not lock that folder immediately after deleting all the contents, it will simply populate again (Resume - a "feature" in Lion). You do that by doing a Get Info (highlight folder and press Command + I keys), unlock the lock at the bottom, enter your admin password, then check the box to lock the folder. lock the lock and you're done.
    Yes, that is correct. The alternative is to quit all applications prior to logging out. Lion will then have a chance to remove the saved states.
    babowa also wrote:
    And, for the OP:
    It has also been a regular feature of Mac OS to automatically open any window that was open at shutdown. To avoit that behavior, simply close any Finder windows and  properly quit applications by closing their window and using Command + Q (or File >Quit).
    This was true only for the Finder. Prior to Lion, no other apps would launch unless they were included in the Login Items for the account. And the OS would not restore windows for other apps.
    A very small number of apps (TextWrangler is an example) implemented this capability prior to Lion. They could restore previously opened windows. But that is an application feature, and can be controlled by the application's preferences. Lion implements it at the system level, and users have virtually no control on a per application basis.

  • I downloaded 10.5.1 now I cannot open libraries from my external hardrive.  They are not highlighted when I open using the Option key

    I downloaded 10.5.1 now I cannot open libraries from my external hardrive.  They are not highlighted when I open using the Option key

    Hello, when you try Tylerdowner's reply make sure that you '''do not install Firefox using a limited Windows XP account''', you need sp2 and above in your xp.
    thank you

  • Why after referenced dll files to my project they are not on my release directory when i build the project ?

    This is a screenshot of my visual studio csharp the References and properties part of the dll's:
    You can see on the right the 3 problem files are the directx dll files.
    When my brother is running the program he get exception say one or more of the dll files is not found.
    I sent him the 3 dll files he tried to put them from where he was running the program he also tried to put them at the directory they are in my place: C:\Temp\radarscan\dlls\DLL'S\Microsoft.DirectX.DLL
    He created this directory and put them there but it didn't help.
    I was sure once i referenced the dll files they are in my program no need to have them. And at least to have them in the directory where you running the program from but it's not working.
    What i want is that my brother and anyone else that will run the program will not need the dll files on his pc and if he does need them so to have them in the directory where you are running the program from will be enough. How can i solve it ?

    Still not working. Tried Samir solution but same problem my brother on his computer getting exception:
    This is the code the line where the exception happen 142:
    private void ScanClouds_Load(object sender, EventArgs e)
    Boolean bl = InitializeDirectX();
    if (bl == false)
    MessageBox.Show("Error initializing directX!");
    Application.Exit();
    And in the method init:
    private Boolean InitializeDirectX()
    DispMode = Manager.Adapters[Manager.Adapters.Default.Adapter].CurrentDisplayMode;
    D3Dpp = new PresentParameters();
    D3Dpp.BackBufferFormat = DispMode.Format;
    D3Dpp.PresentFlag = PresentFlag.LockableBackBuffer;
    D3Dpp.SwapEffect = SwapEffect.Discard;
    D3Dpp.PresentationInterval = PresentInterval.One; //wait for vertical sync. Synchronizes the painting with
    //monitor refresh rate for smoooth animation
    D3Dpp.Windowed = true; //the application has borders
    try
    D3Ddev = new Device(Manager.Adapters.Default.Adapter, DeviceType.Hardware, pictureBox1.Handle,
    CreateFlags.SoftwareVertexProcessing, D3Dpp);
    D3Ddev.VertexFormat = CustomVertex.PositionColored.Format;
    D3Ddev.RenderState.Lighting = false;
    D3Ddev.RenderState.CullMode = Cull.CounterClockwise;
    //load imagesBmp to panelTexture
    //panelTexture = Texture.FromBitmap(D3Ddev, imagesBmp, Usage.Dynamic, Pool.Default)
    backTexture = TextureLoader.FromStream(D3Ddev, mymem);
    //scannerTexture = TextureLoader.FromFile(D3Ddev, @"D:\Buttons\Radar\radar.png");
    scannedCloudsTexture = new Texture(D3Ddev, 512, 512, 1, Usage.Dynamic, Format.A8R8G8B8, Pool.Default);
    //sprite is used to draw the texture
    D3Dsprite = new Sprite(D3Ddev);
    return true;
    catch
    return false;
    The 3 dll files are: Microsoft.DirectX.Direct3D.DLL, Microsoft.DirectX.Direct3DX.DLL, Microsoft.DirectX.DLL
    The question is why he is getting this exception ? Realy it dosent see/find the dll files ? Or maybe his machine not supporting this directx files ? Strange.
    Another thing when i put my mouse on the hard disk on the dll files i see a baloon tip say the:
    File description: Microsoft Managed Direct3D Debug 
    Maybe the problem is that the dll files of the directx belong to the debug directory but i make my program to be build in the release directory ? 
    In any case i can't find any solution yet. This is the exception message:
    System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.DirectX.Direct3DX.dll' or one of its dependencies. The specified module could not be found.
    File name: 'Microsoft.DirectX.Direct3DX.dll'
       at mws.ScanningClouds.InitializeDirectX()
       at mws.ScanningClouds.ScanClouds_Load(Object sender, EventArgs e) in d:\C-Sharp\Download File\Downloading-File-Project-Version-012\Downloading File\ScanningClouds.cs:line 142
       at System.Windows.Forms.Form.OnLoad(EventArgs e)
       at System.Windows.Forms.Form.OnCreateControl()
       at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
       at System.Windows.Forms.Control.CreateControl()
       at System.Windows.Forms.Control.WmShowWindow(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       at System.Windows.Forms.ContainerControl.WndProc(Message& m)
       at System.Windows.Forms.Form.WmShowWindow(Message& m)
       at System.Windows.Forms.Form.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

  • Why do my anchor points and triggers jump to anchors they are not assigned to?

    Hello again,
    I am still tinkering away on my school project Adobe Muse page, but there are just some glitches I can't get under control. The biggest issue is by far the problem with the anchors. I followed a tutorial to the T creating them, but the triggers to not jump reliable to the area they are suppost to go to.
    I have a long horizontal image scroll on which I placed "bubbles" (my links) to visit the sub-pages. Then the user is supposed to be able to return to the same place in the image that he has left from, but this is where things go wrong. The further down the image (probably also depending on how many sub-pages you have visited) the jumps seem to go more erratic.
    Since explaing this is really tricky without an example I already uploaded a copy of my entire Muse page including assets to a dropbox folder. If somebody would be willing to take a look and tell my what it is that I am doing wrong.
    In addition, I have some fixed objects in some of the sub-pages but they jump from where I plced them on the page to about 40+ pix to the right in the preview/published view. Why??
    Still incredible confused...
    file on drop box: https://www.dropbox.com/sh/wxrneqhk0fj4moj/hf3P0vRrpS
    link to test page: http://blau-horizontal.businesscatalyst.com/index.html

    Judy,
    Give this a try:
    *+Your signatures are stored as webarchive files in your <home>/Library/Mail/Signatures folder. There should be a webarchive file for each signature and they in turn are referenced in a SignaturesByAccount.plist file within the same folder. It is possible that the plist file has become corrupted and/or the signature files are corrupted. Move the SignaturesByAccount.plist file to the desktop and then re-create your signatures to see if that resolves the problem.+*
    I found that on another post (Thanks 2point5!)
    After you move the SignaturesByAccount.plist to the desktop and recreate the signatures, make sure you then go ahead and trash it. A new one will be made in the Signatures folder.
    So far this has worked for me.
    Good Luck
    John

  • HT201306 I have purchased books from the iTunes store but they are not showing up in my iBooks, why?

    How do I get purchased audiobooks to show up in the iBooks app?

    I agree with. You this was the path but suddenly I have no audiobook option hence no access to my audio books that I have purchased for the last 2 years. Some thing odd is going on as I have not had any replays from support iTunes on the issue?

  • When entering the digits from an Anti Spam Image they are not accepted by the host web site why

    In e-bay when required to enter the digits from an anti spam image, ebay rejects the entered digets.
    This only occurs when using Firefox, Internet explorer works fine.
    Any body know why?

    hi john, you probably have to go trough your list of addons once (in the firefox ''menu ≡ > addons > extensions'') and disable them one by one to find out which in particular might be causing the problem.

  • HT1848 I downloaded some music from I-tunes and now they are not on my phone or computer. What have I done???

    I'm Lost!!! I Downloaded Music and now its not on my phone or computer!!! What have I done or need to do!?

    I think you can still save that music that you imported from CD to your computer and later suscribe to iTunes Match so that content is also sync in the subscription. I found this article that show you how to transfer those purchases from the iPad to the computer :
    Re-download or transfer your iTunes Store purchases from an iPhone, iPad or iPod to a computer - Apple Support
    Hope it helps at least a little.

  • A website I use with forums shows everything as bold all of the time when normally they are not bold after I read them.

    I have installed a new version of FireFox and when I open a page it is all bolded. I have read a few posts and they have stated to download new fonts. I have tried this and it has not worked.
    The issue is not present in IE so I would imagine fonts are ok. I tried to download an older version of FireFox and the issue is there as well.
    I am using Windows 7.

    Your plugins list shows outdated plugin(s) with known security and stability risks.
    *Next Generation Java Plug-in 1.6.0_16 for Mozilla browsers
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp#jdk (you need JRE)
    Which graphics display card do you have?
    Some ATI drivers have been reported to cause such issues.<br />
    See also [[Some text shows up bold after upgrade]]

  • Iphone car charger once again not charging. Second one and they are not cheap from the apple store.Any else have these problems?

    My Iphone car charger is not charging again. This is the second one I have bought from the Apple store and they are not cheap anyone else have problems?

    I have taken it back to the Apple store genius bar, but they say they don't see anything wrong. Well unless you use it all day and experience the problems when they happen, you wont see anything wrong. But there are lots wrong with it. But this would be the same store as I purchased the phone. And they backed up my old Iphone 4, but were not able to get anything to load back onto my new phone. So, I lost pretty much everything. But over time, some of my contacts have started showing up, although i am still missing over 800 of them.

  • HT204370 I purchased twp movies, which I can see in my account history have been deducted.  They are not in my library!  I can't figure out how to access them!  Totally frustrated and getting angrier by the minute since the period of time I had to watch h

    I purchased two movies which I can see have been deducted from my account.  However, they are not in my library after waiting a long time for them to download.  I can't access the movies I have already paid for!  They are also not in my cloud.  I am completely frustrated.  At this point I just want a refund and will never try to watch a movie on here again!

    If you bought them on your iPad then they should have downloaded into the iPad's Videos app - is that where you are looking for them ?
    If they aren't there then have you tried searching for them via the iPad's spotlight search screen ? Pull down the centre of the home screen in iOS 7, swipe your first home screen to the right in iOS 6 and below.
    If that doesn't find them either, and they don't show in the Purchased tab in the iTunes store app for redownloading (films won't show there in all countries), then try the 'report a problem' page to contact iTunes Support (these are user-to-user forums) : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • On iCloud on my PC it shows that all my contacts are still on iCloud, but they are not showing up on my iPhone 4?

    Can you tell me why this is happening? I have synced my iPhone with iTunes on the PC and they have still not appeared in the phone contacts.

    If you are syncing your contacts from your PC with iCloud, they are not transferred to your phone using iTunes.  They are synced to your phone using iCloud, either over wifi or your cellular data network.
    First go to icloud.com with your computer browser, sign into your account and open Contacts there to confirm that your contacts appear.  If they do, go to Settings>iCloud on your phone, sign into your account and turn Contact on.  Assuming your phone is either connected to wifi or your cellular data network, the contacts should then download from iCloud to your phone.

  • How to restrict employees from accessing managers data using custom security profile

    Hi,
    I am using custom security profile for restricting the employees from accessing supervisors details(PG.SEGMENT2=4). I have written the custom code as below :
    Responsibility :US Super HRMS Manager
    ASSIGNMENT.PERSON_ID
    IN
    (SELECT PAF.PERSON_ID FROM PER_ALL_PEOPLE_F PAF,
    PER_ALL_ASSIGNMENTS_F PF,
    PAY_PEOPLE_GROUPS PG,
    PER_PERSON_TYPE_USAGES_F PPU,
    FND_USER FNU
    WHERE PAF.PERSON_ID=PF.PERSON_ID
    AND :EFFECTIVE_DATE BETWEEN PAF.EFFECTIVE_START_DATE
    AND PAF.EFFECTIVE_END_DATE
    AND PF.PEOPLE_GROUP_ID=PG.PEOPLE_GROUP_ID
    AND :EFFECTIVE_DATE BETWEEN PF.EFFECTIVE_START_DATE AND PF.EFFECTIVE_END_DATE
    AND PPU.PERSON_ID=PAF.PERSON_ID
    AND PPU.PERSON_ID=PF.PERSON_ID
    AND :EFFECTIVE_DATE BETWEEN PPU.EFFECTIVE_START_daTE AND PPU.EFFECTIVE_END_DATE
    AND PAF.PERSON_ID=FNU.EMPLOYEE_ID
    AND PAF.PERSON_TYPE_ID =2
    AND PPU.PERSON_TYPE_ID
    IN(2,62)
    and PAF.person_id = FND_PROFILE.value('user_id')
    AND PG.SEGMENT2=8)
    and using "restrict the people visible to each other using this profile".
    I have assigned the security profile to HR user responsibility
    But when I query the supervisor name in HR User responsibility , it is not restricting me from viewing supervisor details.
    When I query for first time, its restricting me to view others details, but when I close that click on torch button and try searching, its allowing me to access manages details.
    Can any one please let me know what setups need to be done for restricting employees from viewing supervisors data.
    I have gone through the document "Understanding and Using HRMS Security in Oracle HRMS" but didn't got any idea.
    Please suggest.
    Thanks & Regards,
    Anusha.

    Hi All ,
    i solved the problem by using event 01 of header view and using the table "Extract" .
    Regards,
    Neha

  • HT201272 I purchased three autobooks from itunes last weekend and after updating my ios to 7 they no longer appear. I looked at my purchse history and they are not showing in my purchase history. I do have the receipts for the charge. How do I restore the

    I purchased three autobooks from itunes last weekend and after updating my ios to 7 they no longer appear. I looked at my purchse history and they are not showing in my purchase history. I do have the receipts for the charge. How do I restore these?

    "I did make a full back up of my phone prior to updating the iOS"
    Itunes content is not incliuded in the backup that itunes performs.
    Audiobooks are not part of icloud and cannot be redownloaded.
    You can try contacting itunes support and asking for an exception.

  • HT4009 I have purchased items from CityVille and they are not available in the App although my card has been charged for the purchases.

    I have purchased items from CityVille and they are not available in the App although my card has been charged for the purchases. I also have an email receipt with the purchase. Can you please tell me how to resolve this issue?

    iTunes Store: Hiding and unhiding purchases
    http://support.apple.com/kb/HT4919

Maybe you are looking for