Wat is the Transaction Code to find out the Pending Training List

Hello Gurus,
Please let me know the Transaction Code how to find out the pending training list in Training Module in SAP-HR.
Kindly give me the Transaction Code or the report name.
Regards
AM.

Hi,
What do you mean by pending traing list.
Regards,
Kapil Kaushal

Similar Messages

  • Code to find out the mobile number of a nokia set

    Can any one tell me what is the code to find out the mobile number of a nokia handset.

    @pabitra
    There is no reliable way from/with the phone to find out your own number that works with all phones, all operators/networks, all SIM cards unfortunately.
    Simplest way maybe to dial a landline with caller id. or another mobile.
    Happy to have helped forum with a Support Ratio = 42.5

  • Need PlSQL code to find out the column/combination of columns from a given table which will be unique values

    Given a table with some columns and data associated with that. Need to find out a column or a combination of some columns, so that the values or combination of values will be unique in the table.
    The table and number of columns and the columns will be dynamic.
    Can you please help me with the solution?

    f8d0dcea-cdf0-4935-8734-632fe021456c wrote:
    No key is defined in the table.
    Suppose a table contains 20 columns then I need the unique combinations of all columns.
    Example: A table 'Employee' has 4 columns: Emp_No, Emp_Name,Passport_No,Emp_Designation. No key is defined for Employee table. Need to find out which column(single column and combination if columns) have unique values. Like, First check if Emp_No is unique then check Emp_No+Emp_Name is unique, then check if Emp_No+Emp_Name+Passport_No is unique, then check Emp_No+Emp_Name+Passport_No+Emp_Designation is unique.
    Then again try with the combination of Emp_No+Passport_No and so on. In this way I need to find out all the combinations having unique values.
    As Paul says, that will be a waste of time, as it will taken a lot of processing for all the possibilities, checking all the data each time to determine which combinations of columns provide uniqueness.  What happens if someone inserts or deletes some data whilst your doing it?
    You'd be quicker to manually look at the tables, and make an educated guess and then test for uniqueness with a quick query on that guess.

  • Given that I'll use a natural key, how do I deal with the situation if I find out the value later?

    I have been doing a lot of reading about the pros and cons of using natural versus surrogate keys.  I have read in Joe Celko's books and his writing online that he strongly opposes using surrogate keys and using IDENTITY for generating values for a
    surrogate key column of a table in SQL Server.  I would like some advice on how to handle this situation:  I have a table with physician information and would like to use their NPI as a natural key (it would be a foreign key in many other tables)
    but the people who enter new physicians often don't know the NPI until later.  They also may receive the wrong NPI and need to change it later.
    Right now they use Excel spreadsheets to manage their data and I'm sure you can understand what a nightmare of data integrity that is.  Now that I'm going to design and build a database for them, can you recommend a good approach to this specific problem?
     I cannot tell them to hold on to the new physician's data until they get the NPI because they need to immediately work with the physician's information as soon as the new physician joins the organization.  It's a small shop and not a health system
    but thousands of physicians join.  They cannot insist that the NPI be supplied at the time of registration for various political reasons.  The people who are using the system now have varying degrees of skepticism to outright vehement opposition
    to having a new database system so I cannot "lay down the law" about things that may adversely affect the relationship with the new physicians who sign up.  With the Excel spreadsheets they cope with this by either leaving it blank, entering
    9999999 or some other stray string of characters, or perhaps typing in their shopping list.
    Is there a viable solution to this design problem?  Any and all suggestions appreciated.  Thanks for reading this.

    While I disagree with the standard practice of adding an identity column as the primary key for every table, I think that this is a case where it can be beneficial or practical.  You might not want to cluster on the identity column and you still need
    to enforce the uniqueness of the natural key. 
    OTOH, the alternative is to simply fabricate a value for the natural key when it is unknown.  You could do this manually (where the user must enter the fabricated value) or automatically (where the server generates it).  A manual approach might
    be frustrating to the users since they have to "guess" what would be unique and acceptable, resulting in sort of trial-and-error approach to adding.  You would also very likely need to have a way of identifying which rows had a fabricated value.  Once
    the actual natural key has been identified for a given provider you would then need to update it.  The server can handle cascading the value where needed if you so choose.  Note that, except for the cascading part, you need the same capabilities
    for an identity-based table since this natural key is most likely essential to the system. 
    I'll also point out that you can use a unique constraint as the target of a foreign key - you don't have to use the primary key.  Not recommending this, just mentioning the alternative.  
    Which you should choose I can't say - that requires a much better understanding of your model and that isn't something that can be readily provided in a forum such as this.  I will say that you should not prematurely choose an identity.  Why?  First,
    you make this choice once you have deemed the natural key to be a problem.  Second, it may be (at least) some of your anticipated relationships to physician are actually to something else.  A medical system is as much art as science - at least in
    the USA.  Providers, plans, participants, terms, renewals, diagnosis codes, etc. make one's head spin.  Given that you have just started modeling, there is no reason at this point to make this choice - just be aware that the natural key poses some
    issues that you need to address at some point before completion.  Personally I would choose the natural key for now and let the model develop and demonstrate where this choice becomes a problem. 

  • What is the best way to find out the underlying platform within AIR?

    I'd like to know whether Air is running on iOS, Windows, Android or Blackberry.

    Here's our Utuls_System class. It's a work in progress, incomplete, and does other stuff as well, but take a look at init() and isIOS() etc...
    package com.brightworks.util
        import com.langcollab.languagementor.constant.Constant_AppConfiguration;
        import flash.system.Capabilities;
        public class Utils_System
            public static const OS_CATEGORY__ANDROID:String = "osCategory_Android";
            public static const OS_CATEGORY__IOS:String = "osCategory_iOS";
            public static const OS_CATEGORY__MAC:String = "osCategory_Mac";
            public static const OS_CATEGORY__UNKNOWN:String = "osCategory_Unknown";
            public static const OS_CATEGORY__WINDOWS_DESKTOP:String = "osCategory_WindowsDesktop";
            public static const OS_CATEGORY__WINDOWS_MOBILE:String = "osCategory_WindowsMobile";
            private static var _isInitialized:Boolean;
            private static var _isMobileDevice:Boolean;
            //          Getters / Setters
            private static var _appHeight:int;
            public static function get appHeight():int
                init();
                return _appHeight;
            private static var _appWidth:int;
            public static function get appWidth():int
                init();
                return _appWidth;
            private static var _dpi:int;
            public static function get dpi():int
                init();
                return _dpi;
            private static var _osCategory:String;
            public static function get osCategory():String
                return _osCategory;
            //          Public Methods
            public static function getAppStoreName():String
                if (isIOS())
                    return "Play Store";
                return "App Store";
            public static function isIOS():Boolean
                return (osCategory == OS_CATEGORY__IOS);
            public static function isScreenResolutionHighEnough(requiredX:uint, requiredY:uint, isMobile:Boolean):Boolean
                init();
                if ((isMobile) && (!Utils_System._isMobileDevice))
                    // We're testing on the desktop, and can't check screen size
                    return true;
                if (Capabilities.screenResolutionX < requiredX)
                    return false;
                if (Capabilities.screenResolutionY < requiredY)
                    return false;
                return true;
            public static function isRunningOnDesktop():Boolean
                init();
                return !_isMobileDevice;
            //          Private Methods
            private static function init():void
                if (_isInitialized)
                    return;
                _isInitialized = true;
                _isMobileDevice = true;
                var operatingSystem:String = Capabilities.os;
                if (operatingSystem.indexOf("Windows") != -1)
                    switch (operatingSystem)
                        case "Windows XP":
                        case "Windows 2000":
                        case "Windows NT":
                        case "Windows 7":
                            _isMobileDevice = false;
                            _osCategory = OS_CATEGORY__WINDOWS_DESKTOP;
                            break;
                        default:
                            _osCategory = OS_CATEGORY__UNKNOWN;
                            Log.fatal(Constant_AppConfiguration.APP_NAME + " does not currently support this operating system. (" + operatingSystem + ")");
                else if (operatingSystem.indexOf("iPhone") != -1)
                    _isMobileDevice = true;
                    _osCategory = OS_CATEGORY__IOS;
                else if (operatingSystem.indexOf("MacOS") != -1)
                    _isMobileDevice = false;
                    _osCategory = OS_CATEGORY__MAC;
                else if (operatingSystem.indexOf("Linux") != -1)
                    // This won't work properly if developing on Linux, but I've spent multiple minutes
                    // trying to find out how to differentiate Android from other Linux versions, and
                    // haven't found anything that I'm confident will work for future versions of Android.
                    // Currently I get "Linux 2.6.32.9-g34b306d". I suspect that the "g" indicates "Google"
                    // but have found nothing to support this idea.
                    _isMobileDevice = true;
                    _osCategory = OS_CATEGORY__ANDROID;
                if (_isMobileDevice)
                    _appHeight = Capabilities.screenResolutionY;
                    _appWidth = Capabilities.screenResolutionX;
                else
                    _appHeight = 220;
                    _appWidth = 360;
                _dpi = Capabilities.screenDPI;

  • I bought a used iphone5. My carrier activated my phone but will not give me the phone until we find out the password to the previous owners icloud account. Am I able to just switch to my icloud account or what would be a good solution for me?

    I bought a used iphone5, I got it activated but my carrier won't let me have the phone until I get the password from the previous owner but the passwords we were given don't work. Is there a way I could switch icloud user to my account without their password? Otherwise, can't I use the phone to atleast call and text without being signed into icloud account?

    Welcome to the Apple community.
    Unfortunately, you cannot do very much with your phone unless you get assistance from the previous owner, they should either provide you with the password to unlock it or remove their account from the phone entirely remotely through iCloud.com > Find My Phone.

  • Issue with find out the pageItem type

    Hi all,
    i am trying to find out the all pageitem's type and its data on a document .i just use the following code to find out the pageitem's type .
    InterfacePtr<ISpreadList> spreadList(document, UseDefaultIID());
            ASSERT(spreadList);
            if(!spreadList) {
                break;
            UIDList frameList(database);
            int32 spreadCount = spreadList->GetSpreadCount();
            for (int32 spreadIndex = 0; spreadIndex < spreadCount; spreadIndex++ )
                UIDRef spreadUIDRef(database, spreadList->GetNthSpreadUID(spreadIndex));
                InterfacePtr<ISpread> spread(spreadUIDRef, UseDefaultIID());
                ASSERT(spread);
                if(!spread) {
                    break;
                int32 numberOfPages = spread->GetNumPages();
                for (int32 nPage = 0; nPage < numberOfPages; nPage++ )
                    UIDList pageItemList(database);
                    spread->GetItemsOnPage
                     nPage,
                     &pageItemList,
                     kFalse,
                     kFalse 
                    bool16 hasContent;
                    int32 pageItemListLength = pageItemList.Length();
                    for (int32 j = 0; j < pageItemListLength; j++ )
                        UIDRef pageItemRef = pageItemList.GetRef(j);
                        InterfacePtr<IGraphicFrameData> graphicFrameData(pageItemRef, UseDefaultIID());
                        hasContent =graphicFrameData->HasContent();
                        InterfacePtr<IPathGeometry> pathGeometry(pageItemRef,UseDefaultIID());
                        if (pathGeometry != nil)
                           PMPageItemType pathType = Utils<IPathUtils>()->WhichKindOfPageItem(pathGeometry); //issue is this statement simply break up the execution
                            switch (pathType)
    please can any one help me? 

    Hi Pickory
    i have tried the following code ,but it doesnt works
    UIDList pageItemList(database);
                                            spread->GetItemsOnPage
                                             nPage,
                                             &pageItemList,
                                             kFalse,
                                             kFalse
                      bool16 hasContent;
                                            int32 pageItemListLength = pageItemList.Length();
                                            for (int32 j = 0; j < pageItemListLength; j++ )
                                                      UIDRef content = pageItemList.GetRef(j);
                           InterfacePtr<IGraphicFrameData> graphicFrameData(content, UseDefaultIID());
                                            InterfacePtr<IGeometry> frameGeom(graphicFrameData, UseDefaultIID());
                                            PMMatrix inner2parent = ::InnerToPasteboardMatrix(frameGeom);
                        PMRect   r = frameGeom->GetStrokeBoundingBox(inner2parent);
    any thing need to be included?

  • Standard Procedure to find out the hardcoding

    Hi Experts,
    What is the standard procdure to look for whether any hardcoding is existing in the system ....????
    Thanks in Advance,
    Praveen

    Hi Praveen,
    You can use transaction SCI to find the hardcoded text used in the progra. Once you get the programs and text location you need to manually check all the code to find out the literals used in the ' ' are actually hard coding or not.
    Regards,
    Atish

  • Transaction code to find return code for transport request

    Hi,
    I want to see  the return code for transport requests after importing to QAS from DEV. What is the transaction code to find return code and can you explain in brief.
    Thx,
    Vasu

    you can check it out in STMS
    wht you can do is ,,
    Run Tcode STMS > Overview imports (F5) > you will find all import queues > then click on the import queue in which u want to see the status of transport (DEV , QAS , PRD )
    > then find out the transport no > click on that > then click on logs or press ( ctrl + f4)
    Return code
    Meaning
    0000
    Transport performed without errors
    0004
    Warnings were issued. All objects were transported successfully. There were special actions for individual objects that may not have been intentional, for example, a warning is issued during the export if the request contains an object deletion.
    Read the warnings.
    0008
    Individual objects could not be transported successfully. You must analyze and correct the errors. Examples of import errors: Original object was not overwritten, Repaired object was not overwritten
    0012 or higher
    A critical error has occurred, probably not caused by the contents of the request. You must inform your system administrator.
    http://help.sap.com/saphelp_nw70/helpdata/en/57/38e26c4eb711d182bf0000e829fbfe/content.htm
    Hope this information will help you ,,
    Cheers
    dEE

  • Reg : Enhacement for the transaction code MD04

    Hi experts,
    I have implemented an user exit for the transaction code MD04 where in the stock/requirement list I am supposed to add a new column for the exception number which displays the exception description for the corresponding exception number.
      The coding part for fetching the exception description for the corresponding exception number is done in the include 'ZXM61U03'.
      The problem is in the importing parameter IMDEZEXIT in which all the screen data will be present basing on which the data fetching is done .The AUSKT(Exception number) value is not getting populated . All the other data in the row is getting populated.
    Please suggest e a solution for this.
    Regards,
    Ramkishore.

    Hi
    Hope it will help you.
    reward if help.
    Please use FM MD_STOCK_REQUIREMENTS_LIST_API to get all information for transaction MD04/MD05.
    You might also want to check out the function module API.
    MD_MRP_LIST_API
    and also
    check this link for extracting data from MRP tables:
    http://www.sap-img.com/pp001.htm

  • Is there a way to find out the given parameter is statis or Dynamic ?

    Hi All,
    Can some one tell me the best way to find out the given parameter is static or Dynamic?
    Thanks & Regards
    Rajesh Meda

    Well, Actually  I know there is a way for checking from RZ11 transaction.
    1.I need to prepare report with all the ABAP parameters  in the system that can be changed on fly
    2.I believe there is one ABAP report that will specify all the dynamic parameters. I need the report name
    Thanks & Regards
    Rajesh Meda

  • How to find out the IBM XL C/C++ compiler  Version in EBS

    I have Referred  the note
    1294357.1 - New Oracle E-Business Suite R12 Operating System and Tools Requirements on IBM AIX on Power Systems
    Please let me know the correct command to find out the IBM XL C/C++ compiler  version in EBS
    lslpp -l | grep vacpp
      vacpp.cmp.rte             9.0.0.14  COMMITTED  IBM XL C/C++ Compiler
      vacpp.cmp.tools           9.0.0.14  COMMITTED  IBM XL C/C++ Tools
      vacpp.memdbg.aix52.rte    9.0.0.14  COMMITTED  IBM XL C/C++ User Heap/Memory
      vacpp.memdbg.rte          9.0.0.14  COMMITTED  IBM XL C/C++ User Heap and
    From the above command Compiler version is showing as  9.0.0.14 Is it correct command to check the IBM XL C/C++ compiler version?
    (Or)
    lslpp -l | grep -i xlC
      xlC.aix61.rte             11.1.0.2  COMMITTED  XL C/C++ Runtime for AIX 6.1
      xlC.cpp                    9.0.0.0  COMMITTED  C for AIX Preprocessor
      xlC.rte                   11.1.0.2  COMMITTED  XL C/C++ Runtime
      xlC.sup.aix50.rte          9.0.0.1  COMMITTED  XL C/C++ Runtime for AIX 5.2
    From the above command how will identify the IBM XL C/C++ compiler version?

    Hi Hussain
    Thanks for the Reply
    Yes i have reviewd the above note Just i want to know the command that im using to find out the  the IBM XL C/C++ compiler  Version
    Below is the correct command ?We are planning to install new version of Complier 11 .
    But im confused to find out the current Version in my system the below command shows  9.0.0.14 is  IBM XL C/C++ Compiler is it the compiler version on my system?
    lslpp -l | grep vacpp
      vacpp.cmp.rte             9.0.0.14  COMMITTED  IBM XL C/C++ Compiler
      vacpp.cmp.tools           9.0.0.14  COMMITTED  IBM XL C/C++ Tools
      vacpp.memdbg.aix52.rte    9.0.0.14  COMMITTED  IBM XL C/C++ User Heap/Memory
      vacpp.memdbg.rte          9.0.0.14  COMMITTED  IBM XL C/C++ User Heap and

  • How to find out the application server instance name?

    Hi,
    I installed an Oracle application server a long long while ago and completely forgot the things about the installation, including the name of the instance (I installed single instance, not cluster). Now I am trying to create a connection to the application server and I am prompted to fill in the instance name. Where in the installation can I find out the instance name?
    The version of the server as displayed when the server is started:
    $ ./oc4j -start
    Starting OC4J from /oraInventory/j2ee/home ...
    09/10/08 16:04:39 Oracle Containers for J2EE 10g (10.1.3.2.0)  initializedThis 10.1.3.2.0 number is somewhat confusing. As I understand it, right now if you download a copy of the Application server from Oracle web site, the current version is 10.1.3.1.0.
    I am also reading the installation guide now and when looking at the server starting messages on the screen, I realize that installing the server in the oraInventory directory is not quite right. Does that interfere with the correct functioning of the server? I installed it but have never tried to use it until now.
    Many thanks for your help!
    Newman

    J. Newman wrote:
    Hi,
    I installed an Oracle application server a long long while ago and completely forgot the things about the installation, including the name of the instance (I installed single instance, not cluster). Now I am trying to create a connection to the application server and I am prompted to fill in the instance name. Where in the installation can I find out the instance name?If you have access to that server, then the following should give the instance name.
    grep 'IASname' $ORACLE_HOME/config/ias.properties
    you should also see it in the AS Control Console page.
    The version of the server as displayed when the server is started:
    $ ./oc4j -start
    Starting OC4J from /oraInventory/j2ee/home ...
    09/10/08 16:04:39 Oracle Containers for J2EE 10g (10.1.3.2.0)  initializedThis 10.1.3.2.0 number is somewhat confusing. As I understand it, right now if you download a copy of the Application server from Oracle web site, the current version is 10.1.3.1.0.
    Regarding the version numbers, this fourth digit refers to the Component-specific release number. The OAS documentation says this about it.
    "This digit identifies a release level specific to a component. Different components can have different numbers in this position depending upon, for example, component patch sets or interim releases."
    I am also reading the installation guide now and when looking at the server starting messages on the screen, I realize that installing the server in the oraInventory directory is not quite right. Does that interfere with the correct functioning of the server? I installed it but have never tried to use it until now.
    Many thanks for your help!
    NewmanI think Oracle software should always be installed in a separate directory. I think it may also generate errors in its functioning but it will certainly create a whole lot confusion and mess in later administration and configurations.
    hope that helps!
    AMN
    Edited by: AMN on Oct 8, 2009 5:14 PM

  • Find out the sql query for special characters.

    Hi,
    I have the emp table with column name first_name.In that table i have lot records with first_name inlcudes the below mentioned special characters.
    ¡ , ¿, ,Ä,Å,ä,ª,À,Á,Ã,à,á,ã,å,Æ,æ,Ç,ç,È,É,Ê,Ë,è,é,ê,ë,Ì,Í,Î, Ï,ì,í,î,ï, Ñ,ñ, ô, º, Ò, Ó, Ô, Õ, Ö, Ø, ò, ó, õ, ö, ø, ß, Û, Ù, Ú, Ü,ù, ú, û, ü, ÿ,
    I am looking for the records with includes the above mentioned special characters in the first_name column.
    Can u please give the sql query to find out the records.
    Thanks&Regards
    N.Sivaraman

    I am looking for the records with includes the above mentioned special characters in the first_name column.One way would be:
    select emp.*
      from emp,
           table (
             sys.odcivarchar2list ('¡',
                                   'Ä',
                                   'Å',
                                   'ä',
                                   'ª',
                                   'À',
                                   'Á',
                                   'Ã',
                                   'à',
                                   'á',
                                   'ã',
                                   'å',
                                   'Æ',
                                   'æ',
                                   'Ç',
                                   'ç',
                                   'È',
                                   'É',
                                   'Ê',
                                   'Ë',
                                   'è',
                                   'é',
                                   'ê',
                                   'ë',
                                   'Ì',
                                   'Í',
                                   'Î',
                                   'Ï',
                                   'ì',
                                   'í',
                                   'î',
                                   'ï',
                                   'Ñ',
                                   'ñ',
                                   'ô',
                                   'º',
                                   'Ò',
                                   'Ó',
                                   'Ô',
                                   'Õ',
                                   'Ö',
                                   'Ø',
                                   'ò',
                                   'ó',
                                   'õ',
                                   'ö',
                                   'ø',
                                   'ß',
                                   'Û',
                                   'Ù',
                                   'Ú',
                                   'Ü',
                                   'ù',
                                   'ú',
                                   'û',
                                   'ü',
                                   'ÿ'
    where instr (ename, column_value) > 0

  • Transaction code used to upload the data in the application server SCM syst

    Hi
    Could you please anyone tell me the transaction code which has been used to upload the data into the application server in SCM ( APO) system from presentation server. 
    For ex : R/3 system CG3Y , CG3Z has been used to upload the data into application server similarly way could you please tell me the transaction code is used in the APO system for uploading the data into application server.
    Thanks advance for your support.
    Regards,
    Kiran

    try tcode SXDA_TOOLS - copy
    (1st you must fill all obligatory fields)
    A.

Maybe you are looking for