Find out feature of an employee.

Hi,
Can anybody please suggest how do we read the feature of an employee in the SAP system.
What would be the FM to do so.
Thanks,
Rohit

Hi
Transaction Code: PE03 for reading or changing the features.
Regards

Similar Messages

  • How do I find out features on phone?

    I am having trouble now that I activated my 4S phone hearing....where is the volume located...the button on the left side shows increased volume, but I cannot hear the people talking.

    You can check a few things. First, as odd as this question may seem it has happened to many people so it doesn't hurt to ask...did you remove the plastic covering from the front of the device? If you haven't then you should. Although some like to keep it there as a screen protector it is best that you invest in an actual protector rather than try to use the shipping plastic. If that's not the issue, have you been using earphone in your device? Try plugging in the earphones and then taking them back out. Some have mentioned an issue where the phone may still think the headphones are still plugged in. You can also try the usual suggestions...reset/restart/restore your device to see if that fixes the problem. If none of that works, then visit your local Apple store if available and have the Genuis Bar take a look to make sure you don't have a defective device. You can also visit a VZW store or call tech support for additional troubleshooting. You can find the full owner's manual for your iPhone on the Apple support website (the link used to be in my signature but since the forum has changed I'm not sure if it's still there. Just go to Apple.com/support and you should be able to easily find it).

  • How do I find out the puchasing organisation

    Hi,
    How do i find out one of the employee in purchasing organisation assigned to which purchasing organisation in the company.

    Dear Yash,
    I hope you want to say that how you will know that which buyer ( A purchasing officer/Purchasing group in SAP) is assigned to which Purchasing organization.
    If i am right then  please note that  in SAP we are not assigning any Buyer   ( Purchasing Group) to purchasing organization.Its free floating component in SAP.
    So you cannot find this in system
    If useful reward points or revert back.
    Vivek Maitra

  • Find out retirement date

    Hi All,
    we want  to find out Retirement data of employee , for this we need to add 60 years for the date of birth.
    we have date of birth which is coming from R/3 in to 0employee info source.
    I have to write a routine in Transfer rules.
    Any inputs please.
    regards
    harry

    Hello,
    try the foll code logic.
    Loop at result package into workarea.
    workarea-retiredate0(4) = workarea-birtdate0(4) + 60.
    Endloop.
    update result.
    regds,
    Shashank

  • How to find out total active employess/users in PeopleSoft system.

    Hi,
    We need to find out how many terminated employees and how many active employees we have in our Peoplesoft system.
    Thanks.

    Hi rajesh,
    You can use SU10, then click on "Authorization data" -> put * on user -> execute.. you should get a list of all users in the client with details included...
    Also you can list them using USMM and check all licensed users....
    Also SUIM -> users by complex selection criteria -> By user id -> put * on user -> execute.
    Regards
    Juan

  • How to find out which feature is Licensed in Oracle 11G?

    Hi,
    while reading oracle documentation, i found a feature "Health monitor " which i want to test on my Oracle 11G instance. However, i am not sure if my database is licensed or not for this feature and whether this is a feature which comes along with Enterprised edition or not
    1) May i know where can i find out if a given feature is licensed or comes free with enterprised edition?
    2) In my database, can i assume all the features given under dba_feature_usage_statistics are licensed?
    Thanks
    Sarayu

    user12023701 wrote:
    Thanks Rajesh for your quick response.
    How can we find out a specific feature falls under which category?
    Say Health monitor .. I think it should fall under Oracle Diagnostic Pack.Yes ..
    Please read below for details on Options and Packs:
    http://download.oracle.com/docs/cd/B28359_01/license.111/b28287/options.htm#CIHGFIAF
    Regards
    Rajesh

  • How to find out the features/available in a particular version

    Hi
    thanks in advance. I am a novice user. I am using oracle 8.1.7. How can I find out the commands/ features rellated to this version of SQL.

    Hi Devmiral
    Thanks for the links that are of great help. akadia.com is full of resources But I faced one problem as most of the analytical functions did not work on 8.1.7 like rank, dense_rank, running total etc etc
    I have a celeron laptop with 256 MB of RAM and installed oracle 8i database. working on sql is comfortable, but can I install SQL 9.0.1 or higher on this laptop and operate at the same speed.
    I do not want to install the whole of Oracle 9i or Oracle 10g, my objective is to practice all the 9i/10g features of SQL installing the minimum of SQL engine.
    Is it possible, if possible then do let me know the methods or procedure.
    Thanks

  • How to find out the Hire date of an employee?

    Hi All
    What is effective date, Latest start date and other date fields which are are used when we create a new employee?
    What is the difference between hire date and joining date?
    How to find out the Hire date and joining date of an employee?
    Regards
    Rahman

    The effective dates are related to date tracking. The effective start date shows when this version of the record became effective.
    The Hire Date, or Latest Satrt Date shows the date on which the employee was last hired. If he was hired before from 01/01/01 to 31/12/01, then left but was hired again from 01/01/07, the Latest Hired Date would be 01/01/07 and the First Hired Date would be 01/01/01.
    When using Oracle HR, datetracking allows you to either correct data (because it was wrong or incomplete), or update it (because a time effective change took place e.g. got married).
    The[b] effective dates show when a record was updated. So, if an update was made on 07/02/07, and the update datetrack option was used, the current record would have its effective end date set to 06/02/07 (the day before the update) and a new version would be created with the updates and an effective start date of 07/02/07.
    Hope this helps.

  • How do I find out what features are not useful in my Classifier?

    How do I find out what features are not useful in my Classifier? I am trying to trim down the number of features to speed up the training of my data, I have about 3700 features. I have found the Filter Based Feature Selection Module and have not been successful
    in using it. I have looked through all the examples and have not been able to find any examples using the module. Will the Filter Based Feature Selection Module help me to trim features. If so how do I use it?

    One way to do this would be is to use a random forest classifier. Feature/variable importance can be obtained relatively easily with random forests. 
    Here is how you may do it in R.
    > install.packages('randomForest') #install randomForest package in R if it is not already there
    > library(randomForest) # reference the library
    > data(mtcars) # load motor cars data that ships with 
    #train a random forest 
    > mtcars.rf <- randomForest(mpg ~ ., data=mtcars, ntree=1000,keep.forest=FALSE, importance=TRUE)
    > importance(mtcars.rf)
    > importance(mtcars.rf)
    #You will see an output like below
           %IncMSE IncNodePurity
    cyl  16.168645     169.96741
    disp 18.672188     260.08722
    hp   17.584375     184.95007
    drat  6.948743      63.54528
    wt   17.818509     254.30347
    qsec  4.772889      33.25546
    vs    5.303058      24.39064
    am    5.210181      17.36626
    gear  4.619161      21.55450
    carb  8.577037      28.46715
    # or plot the importance as follows
    > varImpPlot(mtcars.rf)
    What this tells you is how important predictors/features/variables like horsepower(hp), weight(wt), no. of cylinders (cyl) is in predicting miles per gallon (mpg).
    If you are wondering how the data looks like. Try this
    head(mtcars) # gives first few lines of the data set.
     mpg cyl disp  hp drat   wt ... 
    Mazda RX4     21.0   6  160 110 3.90 2.62 ... 
    Mazda RX4 Wag 21.0   6  160 110 3.90 2.88 ... 
    Datsun 710    22.8   4  108  93 3.85 2.32 ... 
    . Try this
    Here is a few useful resources:
    Random Forest documentation (Check out the pages on variable importance and variable importance plot)
    http://cran.r-project.org/web/packages/randomForest/randomForest.pdf 
    Motor cars data: http://stat.ethz.ch/R-manual/R-devel/library/datasets/html/mtcars.html

  • Where Can I Go To Find Out How To Use New iOS 4 Features?

    I have just updated my ipod touch to ios 4. I have the wallpaper feature so I am presuming the rest of the features should work. How to I find out how to use the other features such as App folder options, Multitasking etc as I can't seem to be able to ??
    Thanks in advance to anyone who may be able to help

    Start Here. Search Google.
    You must have a 3G or later model to use multi-tasking and some other features.
    Message was edited by: Kappy

  • How can I find out which features will not available due to compatibility?

    I want to find out which features will not be available for 11.2.0.1.0 when the compatible parameter is set to 10.2.0.1.0.
    Thanks.

    Hi;
    I suggest please review:
    COMPATIBLE Initialization Parameter and Upgrade/Downgrade in 11g R1 or 11gR2 [ID 444709.1]
    Database Server Upgrade/Downgrade Compatibility Matrix [ID 551141.1]
    If those are not answer you than I suggest Rise SR
    PS:Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Regard
    Helios

  • Find out skipped employees in PNP report

    Hi all,
    I heart some time ago that is possible to find out the employee numbers that have been skipped ina report that is based on the LDB PNP.
    We have started the RPLICO10 and get the message that several EE have been skipped due to missing authorizations and now we want to find out which EE that are.
    Does anyone have an idea?
    Thanks
    Michael

    If it is a custom report, you could.. by checking the variable
    pnp-sw-auth-skipped-record & trapping the pernr in a table for dispaly..
    The Std report RPLICO10 give you only the count via the function call 'HR_GET_ERRORTAB_FROM_PNP_INFO'.
    Regards,
    Arya

  • Please help me to find out how to turn off the shuffle feature on my touch i-pod, Please help me to find out how to turn off the shuffle feature on my touch i-pod

    Please help me to find out how to turn off the shuffle feature on my I-pod nano ... THANK YOU!!!!!! :)

    Just figured it out :) Thanks though!!!

  • I am visually impared and use the voice over feature. Somehow the screen curtain" has been turned ON and I cannot find out how to disable it withouut turning voice over OFF. I'm really in the dark now.

    I am visually impared and use the voice over feature. Somehow the screen curtain" has been turned ON and I cannot find out how to disable it withouut turning voice over OFF. I'm really in the dark now.
    Thanks in advance for any helpposted.

    How to reset iPod
    iPod Troubleshooting Assistant
    Finding the "Five Rs" of iPod troubleshooting
    iPod troubleshooting basics and service FAQ

  • I have been using FF 3.6.16 for 6 months or so and now am trying to upgrade to FF 4.0 to use the synch feature with an ipad. How do I find out if I have a FF acount? Is using FF synonomous with having an account?

    You just made me create an account to find out if I have an account.
    All I want to know is if I already have an account? How do I do that? Did I have to have had an account to be using FF 3.6.16, as I have been for 6 months or is an account requirement new to FF4?

    If you haven't already used Firefox Sync, you don't have a Sync account.
    If all you want to do is use Firefox Sync, you can install the Firefox Sync extension into Firefox 3.6.x versions. <br />
    https://addons.mozilla.org/en-US/firefox/addon/firefox-sync/

Maybe you are looking for

  • User exit in planned Orders

    Hello all. I have been search for a user exit in planned orders that allow me to define some code in it to triger some changes. this user exit should be at time of planned order is saved. I have already search in this forum and I found out how to fin

  • Why do my apps refuse to start when my iPod 4G turns off from lack of power?

    When my iPod 4th Generation runs out of power and shuts off, giving me the signal to plug it in to charge, some apps refuse to work. For example, I open up an app, and it immediately closes. Is this because there are some apps from another account on

  • Setting cursor to appropriate row and column in JTextArea

    Hi this is kranthi from Hyd iam unable to point out the cursor to the appropriate row and column in the JTextArea are there any methods to do so plz help me

  • Ok, about images and In-Browser editing (not working)?

    I have created a site where I changed the corner radius on a image. In order for me to be able to drop in an image without having to re-adjust and position, I created a rectangle, adjusted the radius and then filled the rectangle with the image, set

  • Invoice creation in REFX

    Dear Friends, After Contract activation in REFX, I tried to create Invoice. But it shows the following error: No invoices could be created, see log Message no. RERAIV007 kindly help me to create Invoice in REFX Regards, V.Elango