Employee Contact details and Project Details

Hello Experts,
I need some information about the Employee Contact details, its project details. i.e. The tables from which I can retrieve the required data.
Is there any built in BAPI for the same??
Please reply.
Thanks,
Prashant

Hi Prashant,
Contact details of the employee is hold in info type 105; i.e. table PA0105.
For the project details, if you're using PS module, CNR2 transaction -> Capacity -> HRMS Button is used.
Regards,
Dilek

Similar Messages

  • Where to maintain project manager and Project details.

    Hi Guys,
                 Whats the transaction or table to maintain project manager and project details.
    Cheers
    S Kumar

    T Code OPS6 (table TCJ04). You maintain person responsible over here and then these values can be referred in project definition or WBS element.
    Regards
    Sreenivas

  • Report to display PO details and download details in an excel fil

    Hi,
    I have been asked to develop a report for "Develop report to display PO details and download details in an excel file".
    Could any one guide me technically what are the different tables i need to take to generate the report. Treat this is very urgent. Pls provide sample code too....
    Thanks in advance....

    Purchase Order PO
    Tcode for creation ME21,ME22,ME23. tables EKKO,EKPO.
    refer this program
    REPORT ZPOCHANGE.
    This is a subroutine perform in the Purchase order Layout sets.
    Description :  To retreive the details of changed remarks in PO output and to capture the retrival date
                         Additional features with the previous changed appearing.  e.g. from .... to
    Note        :  If the latest modification details required
    Please Uncomment the lines mentioned under  'Last Modified Remarks only'
    Information
    /: PERFORM CHDATE IN PROGRAM ZPOCHANGE
    /:               USING &EKKO-EBELN&
    /:               CHANGING &RVDATE2&
    /: ENDPERFORM.
    /: IF &RVDATE2& EQ ' '.
    /  Revision Date: NIL
    /: ELSE.
    /  Revision Date: &RVDATE2&
    /: ENDIF.
    Main Window
    /E CHANGE_REMARKS
    /: PERFORM CHDET IN PROGRAM ZPOCHANGE
    /:            USING &EKPO-EBELP&
    /:            USING &EKKO-EBELN&
    /:            USING &T166T-CHTXT&
    /:            USING &T166T-CTXNR&
    /:            CHANGING &ITAB1-F_NEW&
    /:            CHANGING &ITAB1-F_OLD&
    /:ENDPERFORM.
    /:IF &ITAB1-F_NEW& NE ' '
    =  &ITAB1-F_OLD(C)& CHANGED TO &ITAB1-F_NEW(C)&
    /:ENDIF
    You might need to apply Note 373524 - Message determination and printing
    TABLES : CDSHW , "Change documents, formatting table
             CDHDR , "Change document header
             EKPO  , "Purchasing Document Item
             EKKO  , "Purchasing Document Header
             T166C . "Print-Relevant Purchasing Document Changes
    DATA   : ITAB1 LIKE CDSHW OCCURS 100 WITH HEADER LINE.
    DATA   : ITAB2 LIKE EKPO  OCCURS 100 WITH HEADER LINE.
    DATA   : DOCUM LIKE EKKO OCCURS 100 WITH HEADER LINE.
    DATA   : TABKEY LIKE CDSHW-TABKEY.
    data    : begin of ctab occurs 10,
              tname like t166c-tname,
              fname like t166c-fname,
              TABKEY LIKE CDSHW-TABKEY,
              FLAG(3),
              end of ctab.
    DATA   : VAL1(15), VAL2(15).
    DATA : M1(20), M2(10), M3(10),M4(5).
    DATA : RVDATE(10),RVDATE2(10) , EBELN LIKE EKKO-EBELN, COUNT TYPE I.
    Text number for change text(CTXNR), CHANGE TEXT(CHTXT), Purchase order
    Number and item number are passed from Layoutset
          FORM CHDET                                                    *
    -->  ITAB                                                          *
    -->  OTAB                                                          *
    FORM CHDET TABLES ITAB STRUCTURE  ITCSY
                      OTAB STRUCTURE  ITCSY.
      LOOP AT ITAB.
        CASE ITAB-NAME.
          WHEN 'T166T-CHTXT'.
            MOVE ITAB-VALUE TO M1.
          WHEN 'T166T-CTXNR'.
            MOVE ITAB-VALUE TO M2.
          WHEN 'EKKO-EBELN'.
            MOVE ITAB-VALUE TO M3.
          WHEN 'EKPO-EBELP'.
            MOVE ITAB-VALUE TO M4.
        ENDCASE.
      ENDLOOP.
    Throught this function change details are retrived into itab1.
      CALL FUNCTION 'ME_CHANGES_READ'
           EXPORTING
                DOCUMENT_CATEGORY = 'F'
                DOCUMENT_NUMBER   = M3
           TABLES
                XCDSHW            = itab1.
      SELECT SINGLE * FROM T166C WHERE CTXNR = M2.
      IF SY-SUBRC = 0.
        CONCATENATE M3 M4  INTO TABKEY.
    ********Last Modified Remarks only**********************
       read table ctab with key  tname  = T166C-TNAME
                                         tabkey  = tabkey
                                         fname   = T166C-FNAME.
       if sy-subrc ne 0.
        LOOP AT ITAB1 WHERE TABNAME = T166C-TNAME
                                      AND   TABKEY+3(15) = TABKEY
                                      AND   FNAME = T166C-FNAME.
    *********Last Modified Remarks only**********************
           ctab-tname  = t166c-tname.
           ctab-fname  = t166c-fname.
           ctab-tabkey = tabkey.
           append ctab.
          delete itab1.
          exit.
        endloop.
    Captured details are exported to Layoutset
        LOOP AT OTAB.
          CASE OTAB-NAME.
            WHEN 'ITAB1-F_OLD'.
              OTAB-VALUE = ITAB1-F_OLD.
              MODIFY OTAB.
              CLEAR : ITAB1-F_OLD.
            WHEN 'ITAB1-F_NEW'.
              OTAB-VALUE = ITAB1-F_NEW.
              MODIFY OTAB.
              CLEAR : ITAB1-F_NEW.
          ENDCASE.
        endloop.
      endif.
    ******Last Modified Remarks only****************
    ENDIF.
      clear ctab.
    ENDFORM.
          FORM CHDATE                                                   *
    -->  ITAB                                                          *
    -->  OTAB                                                          *
    Form for revision date retrival. PO no. is passed from layoutset
    and in the change document header latest modified date is captured
    and passed to revision date field in Layoutset.
    FORM CHDATE TABLES ITAB STRUCTURE  ITCSY
                      OTAB STRUCTURE  ITCSY.
      CLEAR : RVDATE, EBELN.
      LOOP AT ITAB.
        CASE ITAB-NAME.
          WHEN 'EKKO-EBELN'.
            MOVE ITAB-VALUE TO EBELN.
        ENDCASE.
      ENDLOOP.
    SELECT UDATE INTO CDHDR-UDATE FROM CDHDR WHERE OBJECTCLAS = 'EINKBELEG'
                                                       AND OBJECTID = EBELN.
        IF RVDATE < CDHDR-UDATE.
          RVDATE = CDHDR-UDATE.
        ENDIF.
        COUNT = COUNT + 1.
      ENDSELECT.
      LOOP AT OTAB.
        CASE OTAB-NAME.
          WHEN 'RVDATE2'.
         CONCATENATE RVDATE6(2) '.' RVDATE4(2) '.' RVDATE(4) INTO RVDATE2.
            IF COUNT = 1.
              RVDATE2 = ''.
            ENDIF.
            MOVE RVDATE2 TO OTAB-VALUE.
            MODIFY OTAB.
        ENDCASE.
      ENDLOOP.
    CLEAR : COUNT.
    ENDFORM.
    Message was edited by:
            Karthikeyan Pandurangan

  • Editing contacts labels and songs details in N8

    Recently I purchased a N8 and using "switch phone" I transferred all my data from my 5800 Xpress music to it. I noticed that all edited labels in phone "contacts" turned to the default labels. Tried to edit them again but such an option is not given by the firmware. The same happens with songs details. I can not find an option to change title, genre, etc... Any ideas?  

    I have all the info I need for contacts, name, address, Mobile , land line, fax, company ,email, nickname etc, and music details in the new music player show if you go into options and chose , song, genres,playlists etc. It's a different system, more than some people realise. I've changed from N97 to E7 and am really happy with it, with the exception of close up photography (which doesn't really bother me) I can't see a downside !! Enjoy it and mess about as much as possible the phone's great 
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • TS1646 Itunes will not recognises my bank details and address details

    Itunes will not recognises my bank details and address details

    Make sure your bank info is the same on your iTunes account and with your bank and that your account is in good status. You can call your bank or iTunes support.
    https://expresslane.apple.com/GetproductgroupList.action

  • Not getting output undr billing details and item details in printng invoice

    In form interface under import tab i have declared 1 value i.e. IM_FS_KNA1 type KNA1 I have not declared anything except this in form interface.
    In Global Definitions under Global Data tab:
    IM_T_KNA1     TYPE TABLE OF     KNA1
    IM_FS_VBRK     TYPE     VBRK
    IM_FS_VBRP     TYPE     VBRP
    W_TOTAL     TYPE     VBRP-NETWR
    IM_T_VBRK     TYPE TABLE OF     VBRK
    IM_T_VBRP     TYPE TABLE OF     VBRP
    under Currency/ Quant Fields
    IM_FS_VBRP-NETWR     IM_FS_VBRK-WAERK     C CURR
    In Billin Window, there is a loop from IM_T_VBRK INTO IM_FS_VBRK where KUNAG = IM_FS_KUNNR
    In main window, i've created a table for displaying item details
    I'm only getting data of Customer in Customer Details window after using driver program. I've checked the entries in the table but for those inputs i'm not getting the desired output..
    Following is the code that i'm using for driver program:
    *& Report  ZPRINTINVOICE2
    REPORT  ZPRINTINVOICE2.
    TABLES:
      kna1,
      vbrk,
      vbrp.
    PARAMETERS :
      p_kunnr LIKE vbrk-kunag,
      p_vbeln LIKE vbrk-vbeln.
    DATA :
      /1BCDWB/SF00000214 TYPE rs38l_fnam.             " Name of the Function Module
    DATA :  t_vbrk LIKE
    STANDARD TABLE
          OF vbrk.
    DATA:  t_vbrp LIKE
    STANDARD TABLE
          OF vbrp.
    DATA :
      fs_kna1 TYPE kna1,                           " Holds Customer Details
      fs_vbrk LIKE LINE OF t_vbrk,         " Holds BillingDoc Header Details
      fs_vbrp LIKE LINE OF t_vbrp.         " Holds BillingDoc Item Details
    START-OF-SELECTION.
      SELECT SINGLE *
               FROM kna1
               INTO fs_kna1
              WHERE kunnr EQ p_kunnr.
       SELECT *
        FROM vbrk
        INTO TABLE t_vbrk
       WHERE kunag EQ p_kunnr
         AND vbeln EQ p_vbeln.
       SELECT *
        FROM vbrp
        INTO TABLE t_vbrp
         FOR ALL ENTRIES IN t_vbrk
       WHERE vbeln = t_vbrk-vbeln.
       CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                   = 'ZTRYINVOICE2'
        IMPORTING
          fm_name                    = /1BCDWB/SF00000214
        EXCEPTIONS
          no_form                     = 1
          no_function_module = 2
          OTHERS                   = 3.
      IF sy-subrc <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
       CALL FUNCTION /1BCDWB/SF00000214
        EXPORTING
          im_fs_kna1       = fs_kna1
          im_t_vbrk        = t_vbrk
          im_t_vbrp        = t_vbrp
        EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 4
          OTHERS           = 5.
      IF sy-subrc <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    plz help......

    Hi Neha,
    Modify your CALL FUNCTION /1BCDWB/SF00000214 like below :
    CALL FUNCTION /1BCDWB/SF00000214
        EXPORTING
          im_fs_kna1       =  im_fs_kna1
        TABLES
          im_t_vbrk        = im_t_vbrk
          im_t_vbrp        = im_t_vbrp 
        EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 4
          OTHERS           = 5.
      IF sy-subrc  0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    At Smarforms > Form Interface > Import :
    im_fs_kna1.
    At Smarforms > Form Interface > Tables :
    im_t_vbrk , im_t_vbrp
    BR
    Dep

  • Table for viewing SHC details and Confirmation details

    Hi All,
    I would like to ask in which table can i get SHC details in SRM (SHC Num, Company Code, Business Area, Created By)
    I would also like to get same details for Confirmations in SRM.
    Thanks!

    Hi,
    Go to T.code: BBP_PD
    Enter the object type : BUS 2121 for shopping cart
    and execute and click on the shopping cart no
    You can see  all the tables for the shopping cart no.
    For Confirmation check :BBP_PDCON this is also appearing in the above t.code
    Please check and reply
    Regards
    Ganesh Kumar .G

  • How to find gr details and invoice status for particular list of purchase

    Hi,
       how to find gr details and invoice status for particular list of purchase orders.
    is there any t.code/report for it??

    Hi,
    You use t.code:ME2Nand enter PO number,tn Execute.Now you will have PO details .Now in item details get GR details and Invoice details   in  purchase order history TAB.
    In t.code:MIR5, you can see blocked invoice by selection.
    Regards,
    Biju K

  • Get Selected Employee Contact Persons Details

    Hi all,
    Created One Value set(DFF) to get Employee Contact Persons Details.
    That value set is getting all Employee's Contact Person's Details(From HRMS Manger)
    Here I want to Restrict Only Selected Employee Contact person's Details Has to Shown in Value Set(DFF) when ever HR Selects any Specific Employee
    Example:
    HR selected 'ABCD' Employee in People Enter and Maintain Form .In My DFF Value Set I want to see only 'ABCD' Employee Contact Persons Details instead of All Employees Contact Persons Details
    Edited by: user10357646 on May 24, 2009 3:28 AM

    Hi Sharath Gajula ,
    How to Get the Selected Person Id ?
    Value Set Query
    select papf1.FULL_NAME from per_all_people_f papf,
    per_all_people_f papf1,
    per_contact_relationships pcr
    where papf.PERSON_ID=pcr.PERSON_ID
    and pcr.CONTACT_PERSON_ID=papf1.PERSON_ID
    and sysdate between papf.EFFECTIVE_START_DATE and papf.EFFECTIVE_END_DATE
    and papf.EMPLOYEE_NUMBER is not null
    --How to get Selected Person Id In Run time
    Edited by: user10357646 on May 24, 2009 3:44 AM

  • HT3702 I'm trying to open an iTunes account and was asked to provide one of each:credit card details or gift card details.i provided a gift card details and yet I'm being asked to contact the support team!!! Pls can someone help me out on this..thanx. Bre

    I'm trying to open an iTunes account and was asked to provide one of each:credit card details or gift card details.i provided a gift card details and yet I'm being asked to contact the support team!!! Pls can someone help me out on this as I cant enjoy my new iPad 3 without buying apps

    Brenda, the easiest way to contact the support team is thru the iTunes Customer Service website:
    http://www.apple.com/support/itunes/contact/

  • I have 2 iPads with the same log in and password details. How do I make them independent of each other so that contacts and calendar entries are not duplicated

    I have 2 iPads. When gifting one to my wife I did not change the log in and security details. Consequently any contacts and calendar entries are duplicated. How do I make the iPads independent so that the foregoing duplications are eliminated?
    Thank you

    The logins on the iPads, for example the iTunes store can be the same if you share an iTunes account, this will not effect the Contacts/Calendars unless you are using iCloud to sync Calendar/Contacts in which case just setup a new iCloud account for your Wife and change the iCloud settings on her iPad to this new account.
    Unfortunately the contacts if syncing with your computer will be the same as it can only sync from the given contacts on your computer.
    You can use a different login to the computer for your wife and she can then have her own contacts.
    If your Contacts application on your compuer has Categories/Grouping you can tell iTunes to sync certain Categories/Groups to each iPad, that way splitting up the contacts on your computer for each iPad.
    The same is true for the Calendar if you only have the one calendar it will sync it for both of you, the iPad settings in iTunes has the option to pick a Calendar if you have more then one.
    One option is to use an online calendar such as Google Calendar and sync to and from it with your iPad that way the Calendars would be individual.

  • When I want to create apple account in billing and card details page I am stuck and get the message contact itune store support to complete this transaction. Need to know what to do as I can't creat apple id

    When I want to create apple account for my new iphone5 with different apple id than this  in billing and card details page I am stuck and get the message contact itune store support to complete this transaction. Need to know what to do as I can't creat apple id

    The first step would probably be to contact iTunes support as you're being told to do.

  • Project Site Quick Links has 2 Project Details Links and no Recent Links

    Hi,
    Project Sites when created has 2 Project Details Links and the Recent Links with the it's sublinks does not appear.   I have this problem on two PWA Instances and not on a 3rd.  Project Server 2013 with SP1 installed.  Does
    anyone know what cause this? 
    Of the 3 PWA instances the 2 that it occurs on are on different SP farms.  I have created a Mastersite template saved as a solution and added to the EPT.  The Master site has the correct links before I save it as a template
    Andrew
    Andrew Payze

    Hi Andrew,
    How did you create the site that you used as the template? Did it start out as a site already attached to a project? If so you should create a blank project site not attached to a project / create during the project create process. Part of the project create
    /  site creation process adds properties associated to that project in the site's property bag etc. you don't want these properties causing issues for other project sites. See the steps below on creating an example custom project site template:
    http://pwmather.wordpress.com/2014/02/02/getting-started-with-projectonline-part-6-ps2013-office365-project-ppm-sharepointonline-pm-sp2013/
    The first part of that post covers project plan templates but the project site templates start from the section beginning with "The site template is a bit more involved than the project plan template"
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • HT1918 ive changed my account details and pressed the done button the phone and also in i tunes keeps telling me to contact I tunes support ??

    ive changed my account details and pressed the done button the phone and also in i tunes keeps telling me to contact I tunes support ??

    Click here and ask the iTunes Store staff for assistance.
    (104672)

  • HT1918 This article is great, IF IT WORKS!  What is the fix when you enter new billing details and all iTunes tells you is, "contact iTunes support"?

    This article is great, IF IT WORKS!  What is the fix when you enter new billing details and all iTunes tells you is, "contact iTunes support"?

    pbsimon82 wrote:
    This article is great, IF IT WORKS!  What is the fix when you enter new billing details and all iTunes tells you is, "contact iTunes support"?
    You contact itunes support, just as it told you to do
    http://www.apple.com/support/itunes/contact/

Maybe you are looking for

  • My calendar will no longer sync with my iPhone 6 or my iPad 2 after upgrading to yosemite

    I have noticed that my Calendar on my iMac will not sync at all to my iPhone 6 or my iPad 2 since upgrading to Yosemite OS. I have done all of the upgrades that Apple has sent out and both devices are at 8.1.2. I have tried following several differen

  • Using oracle function in order by clause

    Hello, can i use report query or report that generate query like this : select fname, lname from peoples order by dbms_random.value; dbms_random is an oracle function to generate random value. Thnaks

  • How to use Google weather API in flex?

    Hi there, I have 2 services. ServiceONE : http://api.locationservice.com/city/key=123abc ServiceTWO: http://www.google.co.in/ig/api?weather='anyCityName' I am using HTTPService for both. Firstly I fetch result which gives me city name, by sending Ser

  • DG4ODBC adds black spaces after every character

    I am trying to set up HS using Oracle 10.2.0.5 on RHEL5 (64 bit), FreeTDS, and MS SQL Server. The ODBC Driver works fine: [oracle@phsbe1pr ~]$ isql sfasql_freetds_dsn sqlSinfoOne *** | Connected! | | | | sql-statement | | help [tablename] | | quit |

  • How to connect measurement document to work order number

    Hi Experts, I have created a Measurement Document based on a Measuring Point. When I take a look at the list of Measurement Documents, the Order number is always blank. Is there somewhere in IK11/IK12 where I can see the Order Number reference for th