Why personnel areas don't have date tied to them?

HI All,
I wonder why PAs don't have date (duration) tied to them. Sometimes,it is necessary to have dates especially in cases when you some PAs are not used anymore. We could delimit those or something. We got many PAs like them and its hard to figure out if we are still using them or not. We maintain some custom table to see which ones are not used anymore. Is there any workaround for this. Please explain..
Thanks,
Rashmi

Hello,
This could be a wothful discussion.
I agree with the SAP's unwritten recommendation about delimition of PA and PSA's. Major reasons I would think is:
1. It is being used on IT0001 of employees and IT0001 would always have end date of 12/31/9999. So assume, if ever, there is any delimition of PA and PSA, either it will error out on IMG table or your master data will be inconsistent.
2. PSA has major dependency on PA. PSA grouping always used in designing major parts of TM and PY. So delimition would cause error here as well.
3. Do not change the text, again it would change history you maintained.
The probable solution, I would think, write an user exit on IT0001 with start date from where you don't wish to use PA and PSA and if user tries to enter it, throw an hardcode RED error.
Suggestions are welcome...
Arti

Similar Messages

  • Why do I get this message , Items can't be copied to "Desktop" because you don't have permission to read them.

    Using Network share io try to copy over my Windows files to the desktop of my iMac which I have done many times before successfully and now I get a message
    reading "Items can’t be copied to “Desktop” because you don’t have permission to read them."
    I am currently running Mavericks 10.9.5

    You may need to rebuild permissions on your user account. To do this,boot to your Recovery partition (holding down the Command and R keys while booting) and open Terminal from the Utilities menu. In Terminal, type:  ‘resetpassword’ (without the ’s), hit return, and select the admin user. You are not going to reset your password. Click on the icon for your Macs hard drive at the top. From the drop down below it select the user account which is having issues. At the bottom of the window, you'll see an area labeled Restore Home Directory Permissions and ACLs. Click the reset button there. The process takes a few minutes. When complete, restart.   
    Repair User Permissions

  • Why Apple TV don't have music visualizer

    Why Apple TV don't have music visualizer option?

    A reasonable guess would be that the Apple TV doesn't have enough horses to pull a visualiser.

  • Why Ipod Touch Don't Have Ichat?

    Why Ipod Touch Don't Have Ichat?

    I imagine that... a limit of sound because ears problems understand that...but in my case i need power i´m not buying a better surround for the gym (the owner must do, but everyone use cd´s and i not see me record cd´s again) ...its the only problem for this iPod to be perfect.... I´m in Portugal, by the way!!! and thanks again for you helping!!

  • Detected use of SPRequest for previously closed SPWeb object. Please close SPWeb objects when you are done with all objects obtained from them, but not before.

    I have develop a custom solution for SharePoint Foundation 2010 that provide PDF documents filled with lists data and attachemnts.
    If the Customer run the solution to get the PDF we found in the ULS log following entry:
    03/07/2014 12:07:20.69  w3wp.exe (0x0B10) 0x18EC 
    SharePoint Foundation General                        90hv Unexpected 
    Detected use of SPRequest for previously closed SPWeb object.  Please close SPWeb objects when you are done with all objects obtained from them, but not before.  Stack trace:    at Microsoft.SharePoint.Utilities.SPUtility.GetLocalizedString(String
    source, String defaultResourceFile, UInt32 language)     at Microsoft.SharePoint.SPFieldCollection.get_DisplayNameDict()     at Microsoft.SharePoint.SPFieldCollection.GetFieldByDisplayName(String strDisplayName, Boolean
    bThrowException)     at Microsoft.SharePoint.SPFieldCollection.GetField(String strName, Boolean bThrowException)     at Microsoft.SharePoint.SPListItem.GetValue(String strName, Boolean bThrowException)    
    at Microsoft.SharePoint.SPListItem.get_Item(String fieldName)    
    at ECM_PDF_Excel.ListClicked.GetECOs(Dictionary`2 searchedEC... e918ecd4-7ed6-44bb-9e4f-d764586a2f79 ...RECONumber)    
    at ECM_PDF_Excel.PDF.Create()     at ECM_PDF_Excel.Layouts.ECM_PDF_Excel.ECMPDFExcel.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)     at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)     at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext
    context, AsyncCallback cb)     at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr
    managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 f... e918ecd4-7ed6-44bb-9e4f-d764586a2f79
    03/07/2014 12:07:20.69* w3wp.exe (0x0B10)                        0x18EC SharePoint Foundation        
     General                        90hv Unexpected ...lags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr
    managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32
    flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)   e918ecd4-7ed6-44bb-9e4f-d764586a2f79
    We check the method
            /// <summary>
            /// Returns the ECOs in a Dictionary: ECO Number, Suffix
            /// </summary>
            /// <param name="searchedECRECONumber">Dictionary, with the search ECR/ECO Number</param>
            /// <returns>Dictionary ECO Number, Suffix</returns>
            public static Dictionary<string, string> GetECOs(Dictionary<String, String> searchedECRECONumber)
                SPSite siteContx = SPContext.Current.Site;
                SPWeb webContx = siteContx.RootWeb;
                Dictionary<string, string> listECOs = new Dictionary<string, string>();
                string ecoNumber = string.Empty;
                string ecoSuffix = string.Empty;
                if (searchedECRECONumber.ContainsKey(ConstantData.listClickedECONumberDictionary))
                    ecoNumber = searchedECRECONumber[ConstantData.listClickedECONumberDictionary];
                else
                    return listECOs;
                // Ich suche die ECO Nummber bei gegebener ECR Nummer
                // Ich brauche den Listen Namen der in den Spalten Realtion ECR Number & Realtion ECO Number einen Wert hat
                SPList dataList = webContx.Lists.TryGetList(ConstantData.listName_ECMExcelTemplateDataLists);
                if (dataList != null)
                    SPListItemCollection dataListItems = webContx.Lists.TryGetList(ConstantData.listName_ECMExcelTemplateDataLists).Items;
                    foreach (SPItem dataListItem in dataListItems)
                        Object relationECRColumnName = (String)dataListItem[ConstantData.listFieldName_ECMExcelTemplateDataLists_RelationECRNumber];
                        Object relationECOColumnName = (String)dataListItem[ConstantData.listFieldName_ECMExcelTemplateDataLists_RelationECONumber];
                        if (relationECRColumnName != null && relationECOColumnName != null)
                            // Ich habe den Listennamen gefunden in dem Spalten Realtion ECR Number & Realtion ECO Number einen Wert haben
                            string searchedListName = (String)dataListItem[ConstantData.listFieldName_ECMExcelTemplateDataLists_Title];
                            string searchedECOSuffixColumnName = (String)dataListItem[ConstantData.listFieldName_ECMExcelTemplateDataLists_RelationECONumber];
                            // Get the List from variable listName
                            listECOs = GetECOsDictionary(searchedListName, searchedECOSuffixColumnName, ecoNumber, relationECOColumnName);
                return listECOs;
    - What take we wrong?
    - How can we avoid this message?
    Regards
    Jonnyenglisch
    Ralf Happe - Christobal Colón N° 1 ES 07670 Portocolom Tel.: +34 6961 0375 7 @: [email protected] Skype: ralfhappe msm: [email protected] www.ralfhappe.com ralfhappe | soluciónes

    Here the code of GetECOsDictionary:
             /// <summary>
            /// Fill the dicionary with related ECO Numbers/Suffix
            /// </summary>
            /// <param name="searchedListName">String: the name of the list</param>
            /// <param name="ecoNumber">String: the ECO Number</param>
            /// <param name="relationECOColumnName"></param>
            /// <returns>Dictionary</returns>
            private static Dictionary<string, string> GetECOsDictionary(string searchedListName, string ecoNumber, Object relationECOColumnName)
                SPSite siteContx = SPContext.Current.Site;
                SPWeb webContx = siteContx.RootWeb;
                Dictionary<string, string> listECOs = new Dictionary<string, string>();
                SPQuery oQuery = new SPQuery();
                oQuery.Query = "<OrderBy>" +
                                    "<FieldRef Name='" + "Title" + "' Ascending='TRUE'></FieldRef>"
    +
                                "</OrderBy>" +
                                "<Where><BeginsWith>" +
                                    "<FieldRef Name='" + "Title" + "'/>" +
                                    "<Value Type='Text'>" + ecoNumber + "</Value>" +
                                "</BeginsWith></Where>";
                SPListItemCollection searchedListItems = webContx.Lists.TryGetList(searchedListName).GetItems(oQuery);
                foreach (SPItem searchedListItem in searchedListItems)
                    // Wenn die geclickte ECO Nummer gleich der Listen ECO Nummer ist dann setze die gefundene ECO Nummer
                    string foundECONumber = (String)searchedListItem[relationECOColumnName.ToString()];
                    string[] splitECONumber = foundECONumber.Split(ConstantData.splitBy_Slash);
                    if (ecoNumber == splitECONumber[0])
                        ecoNumber = splitECONumber[0];
                        if (splitECONumber.Count() == 1)
                            listECOs.Add(foundECONumber, "0");
                        if (splitECONumber.Count() > 1)
                            listECOs.Add(foundECONumber, splitECONumber[1]);
                return listECOs;
    Ralf Happe - Christobal Colón N° 1 ES 07670 Portocolom Tel.: +34 6961 0375 7 @: [email protected] Skype: ralfhappe msm: [email protected] www.ralfhappe.com ralfhappe | soluciónes

  • Trying to copy files and getting this error message, One or more items can't be copied because you don't have permission to read them. this is really annoying, can someone pls help..?

    i have two network drive and i am trying to copy a file from my mac mini to one of the network drives, but i keep getting this error message "One or more items can’t be copied because you don’t have permission to read them." i have no idea why this is since i have always been able to copy stuff back and forth. i checked my file sharing permissions and it is set to read and write for admin (me), none for everyone and read for guests. can someone please, this is very annoying and this is the second time it has happened to me.

    neither move nor copy is working. both way gives same error message. what i would like to do however is move the file. yes i am logged in as a the admin and the issue is affecting not just that particular file in my system but others as well. i looked at get info and no the file is not locked but under permission, it says everyone and read only. it will not let me change this setting from get info however when i look under system preferences for file sharing, my setting is read and write for admin (me), none for everyone and read for guests.

  • Detected use of SPRequest for previously closed SPWeb object. Please close SPWeb objects when you are done with all objects obtained from them

    HI
    i am keep seeing this message in ulsviewer of splogs in a webfront end server
    Detected use of SPRequest for previously closed SPWeb object.  Please close SPWeb objects when you are done with all objects obtained from them, but not before.  Stack trace:  
    at Microsoft.SharePoint.SPWeb.get_Exists()   
    at Microsoft.SharePoint.WebControls.CssLink.OnLoad(EventArgs e)   
    at System.Web.UI.Control.LoadRecursive()   
    at System.Web.UI.Control.LoadRecursive()   
    at System.Web.UI.Control.LoadRecursive()   
    at System.Web.UI.Control.LoadRecursive()   
    at System.Web.UI.Control.LoadRecursive()   
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)   
    at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)   
    at System.Web.UI.Page.ProcessRequest()   
    at System.Web.UI.Page.ProcessRequest(HttpContext context)   
    at ASP._layouts_icc_icc_scan_view_aspx.ProcessRequest(HttpContext context)   
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()   
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)   
    at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)   
    at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb)   
    at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)   
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)   
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)   
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)   
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
    adil

    Hi,
    Your SPweb object is not disposed properly.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/3a25eb86-8415-4053-b319-9dd84a1fd71f/detected-use-of-sprequest-for-previously-closed-spweb-object-please-close-spweb-objects-when-you?forum=sharepointdevelopmentprevious
    http://sharepoint.stackexchange.com/questions/50793/detected-use-of-sprequest-for-previously-closed-spweb-object-after-spquery
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Can't talk to other apple products outside of wifi or when I don't have data. What's wrong and how can I fix it ?

    So I just bought a new iPhone 4S and I have to share my data with four other people so to avoid using it up I use wifi whenever possible. I use iMessage to talk to iPhones but when I'm not around wifi or when I don't have any more data, I don't receive any of their regular SMS messages but I can send them. I checked my friend's iPhone and he receives my message as an SMS but when he replied it was still in iMessage. Is it not detecting that my iMessage is off ?What's wrong and
    how can I fix it ?

    I think I fixed the apps, though.
    *Turn off your wifi and only turn it on when you want to use it
    *Lower your brightness
    *Turn off "Push" on notifications and mail and turn on "Manual"
    *Return to your home screen and then double click twice and tap and hold one of the apps you've previously opened, when they jiggle tap the red on each app until fully erased.
    *Don't use your ipod while it is charging, allow at least a 10 minute charge (fully charged) before using it again.
    See if this helps(: ... I still have no answer bout the camera issue. I might be going to apple soon so we will see then.

  • When I try to access itunes store on my computer, the screen pops up and then goes blank...anyone know why?  I don't have any pop up blockers on

    When I try to access itunes store on my computer, the screen pops up and then goes blank. I don't have any pop up blockers on.  Anyone?
    thanks

    Hi Jennifer,  I'm having the exact same problem.  I have tried uninstall.  reinstall.  Change accounts.  Nothing works.  My songs are still there but when I click on itunes store the screen is blank.  ???  Come on windows people how do we fix?

  • Why my bookmarks don't have their sitelogo anymore and the text is larger?

    My computer crashed and I had to reinstall windows XP. After i had isntalled it and reinstalled Mozilla also my web browser window is different. The bookmarks don't have their sitelogos anymore and the text is allmost double in size. How can fix this or am i missing some programs?

    Did you restore any Firefox files (program / profile) from before that reinstall?
    Did you make changes to the DPI settings in Windows (Control Panel > Display) ?

  • Preview is locking me out of my own PDFs, saying I don't have permission to view them even though I do

    I've only noticed this since the software update (10.7.1), but I've got a big problem with preview at the moment. I'm trying to open some PDFs (journal articles) saved on my MacBook Pro, which I've previously had no trouble opening, but all I get is an error message saying:
    "The file couldn’t be opened because you don’t have permission to view it. To view or change permissions, select the item in the Finder and choose File > Get Info."
    I then go to get info for the file, and see that I DO have read and write permission for the file. But it still won't let me open it.
    I'm trying to write my Masters dissertation (due in in less than 2 weeks) and it is ESSENTIAL that I'm able to view these files to complete it. Needless to say this is making me very stressed out and frustrated! I'm almost certain they all worked before the 10.7.1 update, but can't be 100% sure.
    Any guidance on this would be much appreciated.
    Thanks,
    George

    Thanks for trying to help but this is a different issue - see my post for details. I'm pretty sure sandboxing is the cause: you can only access files via bookmarks etc if you have already explicitly opened them.
    From: http://developer.apple.com/library/mac/#documentation/Security/Conceptual/AppSan dboxDesignGuide/AppSandboxInDepth/AppSandboxInDepth.html
    "Your sandboxed app can access file system locations outside of its container in the following three ways:
    At the specific direction of the user
    By using entitlements for specific file-system locations (described in “Entitlements and System Resource Access”)
    When the file system location is in certain directories that are world readable"

  • How do I view pc files migrated to iMac? The folders tell me I don't have permission to open them.

    I used the Migration Assistant tool to copy files from my WindowsXP pc to my new iMac.   This took about 3 hours to complete.
    I finally was able to locate the folders on the iMac, but they all have a red minus sign in the bottom right corner, and when I try to open them, I get a message saying I don't have permission to open the files - even though they are my own files.  Any ideas on how to access my migrated files on my Lion iMac?

    Select a folder, CMD+I, unlock the lock, and change the permissions. Assuming that you're a switcher from the PC world,  see these:
    Switching from Windows to Mac OS X,
    Basic Tutorials on using a Mac,
    Mac 101: Mac Essentials,
    Mac OS X keyboard shortcuts,
    Anatomy of a Mac,
    MacTips,
    Switching to Mac Superguide, and
    Switching to the Mac: The Missing Manual,
    Snow Leopard Edition.&
    Additionally, *Texas Mac Man* recommends:
    Quick Assist,
    Welcome to the Switch To A Mac Guides,
    Take Control E-books, and
    A guide for switching to a Mac.

  • When I download photos to my I-Mac and then try to open them,  It says that I don't have permission to view them. I have been using the computer for several months without this problem, but it has appeared within the last two weeks.

    When I try to open my downloaded photos from a DVD through finder the computer says that I don't have permission to view the files.
    This is something that has just happened recently.

    Copy the images to your Pictures folder or Desktop and then try again.
    If that doens't work, then do #6 here, (Reset Home Directory Permissions and ACLs)
    that will set the permissions to you.
    ..Step by Step to fix your Mac

  • When i run labview6.1 on my pc with windows the "DAQ Solution " was gary doesn't work i don't know why ?i don't have a daq board card is that a reason? i want to know what should i have to use labview in data acquisitio​n?

    i am using a platform windows 98 ,and labview 6.1
    thanks in advance

    With the NI-DAQ driver, you can build VIs, but you can not acquire data until you have a Data Acquisition card. You can get these from National Instruments over the web or by calling.
    J.R. Allen

  • Why do iCal timed events have date written in in the event?

    iCal. If I add an event ("New Event") that is an timed event (does not happen with "all day" events) it has the date of the event after the time.
    for instance, a meeting at 8:00 AM on 9/10/08 reads "8:00 AM9/10/08 Meeting".
    /Users/rrodby/Desktop/Picture 3.jpg
    That makes no sense since it is on the calendar IN THAT DATE. My other 2 computers iCal doesn't do this and they are synced.
    I have no idea how to get rid of this?
    roger

    Roger,
    Try changing your System Preferences...>International>Formats>(Region:) (Dates) (Times) Customize... to your specifications.
    ;~)

Maybe you are looking for

  • Tape1081 vs progressive?

    I am wondering if I should upgrade my camera. I have an Hd1 mini dv 1080i Sony tape camera from 3 years ago. How big a difference is the quality of the new progressive HD cameras these days? The person who lends out the equipment says it is a huge di

  • Want functionality Like SM30 but record lock instead of table lock

    Hi, Like SM30 (Table maintenance) ,i want to create some ZTcode to mainten Ztable data entry. In this, can i put lock at record level instead of table table ??? So that user can have access only for Display & New entries & not for changing existing e

  • 4.0 EA2 Commit in subversion gives error due to missing parent entry

    Hello, I am using Data Modeler 4.0 EA2 with SVN. In the following scenario an error occurs when committing the change in SVN: 1- open a model in DM 2- add a physical model to the relational model 3- save the model 4- commit the changes in SVN The fol

  • [REOPENED] Kmail2 is not sending mails

    After upgrading from Kmail to Kmail2 and migrating mails, receiving works but messages I write and want to send stays in outbox. There's no progress bar at lower right corner when I click 'Send queued messgaes'. In .xsession_errors I can find followi

  • Studio Creator for dummies

    Dear All, i'm writing to you in order to ask help to create a web application. Please take care to the fact that i'm really new on not only in Studio creator but also in the related technologies. I'll try to explain you quickly what i'm trying to do.