Employee information change

EBS 11.5.10.2
windows 2003
HRMS application.
I want to know what table access if employees personal information(middle name was added) has been changed and and waiting to be approved.
A sample query will help.
Help is appreciated.
Thanks.

I do not have the exact query but you can get it yourself. Refer to the following notes for more details:
Note: 337268.1 - How Can You View Sql Statements Generated By Human Resources Forms?
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=337268.1
Note: 259722.1 - HOWTO Determine Table and Column Name from a field in a form in 11i
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=259722.1

Similar Messages

  • Process to restrict an employee to change personal information in ESS

    Hi,
    As per the requirement, in ESS, Personal information should be in Display mode but here employee can change his personal information like Bank details [IT0009], Family details [IT0022], Address [IT0006] etc.
    So please guide to restrict an employee to change personal information in ESS.
    Thanks,
    Abay

    Hi,
    Thanks for the update.
    Do you have any document on the same?
    Thanks,
    Abay

  • Employee information details in Arabic

    Hi,
    Is it possible to maintain employee information like infotype 0002 and 0006 and all in Arabic language. kindly share the process.
    Regs,
    Brhama

    Hi
    Check T code SMLT and if u have that package u can change the required language.
    Kindly check and revert.
    Regards
    Raahul.

  • Employee information Upload in HR module

    Hello Experts,
          I want to upload Employee Information in database using BDC so can any one send me step by step procedure for doing this.If possible send one example.
    Mail me on: "[email protected]"
    Thanx and Regards,
    Rahul Talele

    Hi  ,  i did recording for   one  infotype   ... so normal  we  use to  upload  data  with 1  or  2  infotype  at a time  ..... all most   one infotype  only  ....  where  in th  some rare  case we go for   2 infotypes .
    this is  for PA30  transction  code  and infotype   0001 .
    like this  you can record for all the  infotypes    and see  ... this one  was  working   i created the file  and uploaded .
    report ZTEATRWE
           no standard page heading line-size 255.
    include bdcrecx1.
    parameters: dataset(132) lower case.
    ***    DO NOT CHANGE - the generated data section - DO NOT CHANGE    ***
    *   If it is nessesary to change the data section use the rules:
    *   1.) Each definition of a field exists of two lines
    *   2.) The first line shows exactly the comment
    *       '* data element: ' followed with the data element
    *       which describes the field.
    *       If you don't have a data element use the
    *       comment without a data element name
    *   3.) The second line shows the fieldname of the
    *       structure, the fieldname must consist of
    *       a fieldname and optional the character '_' and
    *       three numbers and the field length in brackets
    *   4.) Each field must be type C.
    *** Generated data section with specific formatting - DO NOT CHANGE  ***
    data: begin of record,
    * data element: PERNR_D
            PERNR_001(038),
    * data element: TIMRE
            TIMR6_002(001),
    * data element: CHOIC
            CHOIC_003(035),
    * data element: PERNR_D
            PERNR_004(038),
    * data element: TIMRE
            TIMR6_005(001),
    * data element: CHOIC
            CHOIC_006(035),
    * data element: BEGDA
            BEGDA_007(010),
    * data element: ENDDA
            ENDDA_008(010),
    * data element: BTRTL
            BTRTL_009(004),
    * data element: ABKRS
            ABKRS_010(002),
    * data element: ANSVH
            ANSVH_011(002),
    * data element: PLANS
            PLANS_012(008),
          end of record.
    *** End generated data section ***
    start-of-selection.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      =   c:/test.txt
       FILETYPE                      = 'ASC'
       HAS_FIELD_SEPARATOR           = 'X'
    *   HEADER_LENGTH                 = 0
    *   READ_BY_LINE                  = 'X'
    *   DAT_MODE                      = ' '
    *   CODEPAGE                      = ' '
    *   IGNORE_CERR                   = ABAP_TRUE
    *   REPLACEMENT                   = '#'
    *   CHECK_BOM                     = ' '
    *   VIRUS_SCAN_PROFILE            =
    *   NO_AUTH_CHECK                 = ' '
    * IMPORTING
    *   FILELENGTH                    =
    *   HEADER                        =
      TABLES
        DATA_TAB                      =  RECORD  .
    perform open_dataset using dataset.
    perform open_group.
    *do.
    loop at record
    read dataset dataset into record.
    if sy-subrc <> 0. exit. endif.
    perform bdc_dynpro      using 'SAPMP50A' '1000'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RP50G-PERNR'
                                  record-PERNR_001.
    perform bdc_field       using 'RP50G-TIMR6'
                                  record-TIMR6_002.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RP50G-CHOIC'.
    perform bdc_field       using 'RP50G-CHOIC'
                                  record-CHOIC_003.
    perform bdc_dynpro      using 'SAPMP50A' '1000'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RP50G-PERNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=INS'.
    perform bdc_field       using 'RP50G-PERNR'
                                  record-PERNR_004.
    perform bdc_field       using 'RP50G-TIMR6'
                                  record-TIMR6_005.
    perform bdc_field       using 'RP50G-CHOIC'
                                  record-CHOIC_006.
    perform bdc_dynpro      using 'MP000100' '2000'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'P0001-PLANS'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=UPD'.
    perform bdc_field       using 'P0001-BEGDA'
                                  record-BEGDA_007.
    perform bdc_field       using 'P0001-ENDDA'
                                  record-ENDDA_008.
    perform bdc_field       using 'P0001-BTRTL'
                                  record-BTRTL_009.
    perform bdc_field       using 'P0001-ABKRS'
                                  record-ABKRS_010.
    perform bdc_field       using 'P0001-ANSVH'
                                  record-ANSVH_011.
    perform bdc_field       using 'P0001-PLANS'
                                  record-PLANS_012.
    perform bdc_transaction using 'PA30'.
    *enddo.
    endlloop .
    perform close_group.
    perform close_dataset using dataset.

  • Team - Employee Information, Employee Working Times etc.

    Hi Experts,
    On MSS, I am not able to see Employee Information, Working Times, Performance Management, Competency Management, and Personnel Change Request services under main service of Team. It doesn't display any of above services under Team.
    I can only see Team Calendar, Headcount and Recruiting Position which are available right hand side on portal.
    Is their any specific setting required to view the same? Do we need to do any specific settings on portal?
    Thanks in advance.
    Cheers,
    Aashish

    Hi Chris,
    I am looking for following services which should show-up when we click left hand side on Team link on MSS. (It falls under detail Navigation - Work Overview
    Team
    Budget
    Projects
    Planning)
    I am not able to see services iView which contains following data.
    Employee InformationGeneral Information
    Compensation Information
    Personnel Development
      Employee Working TimesApprove Time Sheet Data
      Performance ManagementMaintain Performance Documents
      Competency ManagementMaintain Position Requirements
      Personnel Change RequestsCreate New Personnel Change Request
      HCM Processes and FormsStart Processes
      RecruitingCreate New Requisition Request
    Create New Candidate Assessment
      OrganizationOrganizational Chart
    Please guide me how to activate this.
    Thanks,
    Aashish

  • WF notification in case Employee Data changes

    Hello Experts,
    We are looking to get some kind of notification if Infotype 8(Basic Pay) of an employee is changed. I was wondering if anyone has implement this scenario before..
    We need to send some information if the basic pay changes like a workflow message to a user's sap inbox.
    Please advise.
    thank you very much in advance.
    Mridula

    Mridula,
    You may use business object "BASICPAY" nad event " Changed" to trigger notifications.
    Regards
    SVS

  • Missing Employee information

    I tried debugging it but could not find a solution as to why one employee information is missing from this code.
    Select UserName, EmpNumber, Product, SubProduct, [1] as 'January', [2] as 'February', [3] as 'March', [4] as 'April', [5] as 'May', [6] as 'June'
    , [7] as 'July', [8] as 'August', [9] as 'September', [10] as 'October', [11] as 'November', [12] as 'December'
    from (
    SELECT 
    Userdata.chUserName as UserName
    ,Month(a.dtInsertDate) as [Month2]
    , datename(mm,a.dtInsertDate) as [Month]
    ,Year(a.dtInsertDate) as [Year]
    ,chRefReferredBy  as EmpNumber
    ,case when Prod.vchParameterDesc like '%Insurance' and Prod.vchParameterDesc <> 'Auto Insurance' then 'Other Insurance'
    when Prod.vchParameterDesc = 'Auto Insurance' then 'Auto Insurance' when Prod.vchParameterDesc = 'Travel' then 'Travel' end as Product
    ,SubProd.vchParameterDesc as SubProduct
    --,count(iCustomerId) as Total
      , iCustomerId
    FROM [CRM_OED].[dbo].[CSuProductReferrals] a (nolock)
    Left Outer Join [CRM_OED].[dbo].[ReferenceParameters] b(nolock)
    on b.iParameterId = a.iRefType
    Left Outer Join [CRM_OED].[dbo].[ReferenceParameters] as Prod(nolock)
    on Prod.iParameterId = a.iRefProduct
    Left Outer Join [CRM_OED].[dbo].[ReferenceParameters] as SubProd(nolock)
    on SubProd.iParameterId = a.iRefSubProduct
    Left Outer Join [CRM_OED].[dbo].[ReferenceParameters] as AccptDec(nolock)
    on AccptDec.iParameterId = a.iStatus
    Left Outer Join [CRM_OED].[dbo].[Users] Userdata(nolock)
    on Userdata.chUserId = a.chRefReferredBy
    Inner Join [CRM_OED].[dbo].[csuEmployeeAttributes] as Attributes(nolock)
    on Attributes.chUserID = chRefReferredBy
    Inner Join [CRM_OED].[dbo].[UDT_GroupsRegion] as Region(nolock)
    on Region.chGroupID = 'RE' + cast(Attributes.iRegioncode as CHAR(10)) 
    where Year(a.dtInsertDate) = @Year
    --and chRefReferredBy in ('643247')
    and AccptDec.vchParameterDesc = 'Accepted'
    and a.tiRecordStatus = 1
    and( Region.chGroupDesc in (@Region) or ' All' = @Region)
    and Prod.vchParameterDesc not in ('Life Insurance', 'Annuities')
    and (cast(Attributes.iClubCode as CHAR(10)) in (@Club) or ' All' = @Club)
    and (Prod.vchParameterDesc like '%Insurance' or Prod.vchParameterDesc = 'Travel')
    ) P
    Pivot
    count(iCustomerId) 
    For [Month2]  in 
    ([1],[2],[3],[4],[5],[6],[7],[8],[9],[10],[11],[12])
    ) as pvt
    Order by 
    UserName, Product, SubProduct
    Any help would really be appreciated.

    I was able to resolve the issue. The problem was in the where clause which was filtering out employee data based on region. 
    and( Region.chGroupDesc in (@Region) or ' All' = @Region)
    Thanks for you help Patrick.

  • HR application missing some button in employee information form

    Dear All
    After upgrade from 12.0.6 to 12.1.1, missing some button in employee information form of HR application when using arabic interface but its working for english interface.
    buttons like FIND CANCEL DETAILS SAVEAS CLEAR. these are the buttons missing in arabic interface,
    please advice me
    Thanks

    You can see here how to handle manual processes:
    http://apex.oracle.com/pls/otn/f?p=31517:170
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    ------------------------------------------------------------------------------

  • Employee information missing in CAT2 time entry data view

    Hi,
         We upgrade our system and when we go to time entry data view, we lost the employee information like Personnel number and cost center which displayed before upgrade.
    I checked with Tcode CAC2, nothing found. But My guess is Personnel number and Cost center will be coming default.
    Please let me know, where I can look in to it.
    Thaks
    Ral

    Hey Guys,
    You should ensure that for any configuration, the Modifiable and Influences you have a Hide entry. This way you will not be able to show the field. Kindly check the on CAC2 these both sections:
    - Modifiable
    - Influences.
    Thank you.
    Regards,
    Bentow

  • Employee Information iViews dont display in MSS

    Hi All,
    I installed and configured MSS Business packages. All the MSS is views seems to work fine but for the  <b>Employee Information iViews</b>.
    We have ERP2005, EP7.0 of NW2004s SP9.
    After logging into the Portal as an MSS user I go to Team and when I click either General Information or Compensation Information or Personnel Development under <b>Employee Information</b> I get the pop windiw with all iview but no display.
    However when I click the show in new window option under Show details option on the top right hand corner of the iView page I do get to see the information on the pop window...
    what could be the problem here??
    Thanks for the help in advance
    Regards
    Madhu

    Madhu,
    Did you apply Note 903370 - Missing Customizing leads to failures in Employee-Profile
    Munish

  • Employee information is empty in MSS- Team in NWBC

    Dear all Gurus,
    Before starting I must say I searched on this topic in SCN & found numerous threads on the same. But all are having different solutions & most of them are in portal & using LPD_CUST. In my case we are in NWBC.
    I have already maintained the relationships for employee & manager using pa30 & po13.
    Now if an employee create a leave or travel request, it will appear in the managers work item.
    But in manager id, if we go to team -> employee information. it is showing no data exists.
    We haven't done any customizations or configurations for this.
    What I am missing & what I should do to display the reporting employees for the manager.??
    We are in NW 7.4.
    Regards,
    Namsheed.

    I doubt it is related to NWBC or you using the PFCG roles. Ask your basis/security admins to run a authorization trace, most likely it is a authorization issue maybe even structural/context one.

  • Employee information under MSS

    Dear Experts,
    Would you please help me how to activate the employee information iView under MSS- Team?
    Appreciate you help on this
    Thanks
    Jay

    Check the following link:
    [MSS OADP|http://www.slideshare.net/Juanfe1978/mss-new-objectdataprovideroadp]
    Regards

  • My apple ID is stolen. i can't access. can't reset. my information changed. how i regain my ID?

    my apple ID is stolen. i can't access. can't reset. my information changed. how i regain my ID?

    you need to contact apple support team by phone

  • Release Employee Information-MSS for a number of employees

    Hi,
    Through the Release Employee Information in MSS, a manager can grant access of an employee's record to another manager.
    There is a requirement where in a Manager can grant access of many employees to a manager at one go.
    Is this possible.
    Thanks

    As per seeded functionality Manager can give access one by one.

  • Odata Service For Employee Information

    Hi Everyone,
    I want to call the odata service related to employee profile. But unable to find that service in my sap system.
    Can anybody tell me the name of the odata service which need to call from the gateway or from where I will get the name of the odata service related to employee information?
    Regards,
    Soumya

    Hi Soumya,
    getting bad request means your URI is not correct. try with
    http://<hostname>:<port>/sap/opu/sdata/iwcnt/employee/EmployeeCollection
    let me know if you get any specific error with above query.
    how can I connect to the HR system with GW? Is that can be done by using GW?
    it depends if you will be getting employee details from SAP HR system which is separate from SAP NW GW or part of it. ie. based on your deployment scenarios(http://help.sap.com/saphelp_nw74/helpdata/en/3e/b1ea508f88bb7ee10000000a445394/content.htm ) and accordingly confuguration should be in place
    you can also refer https://help.sap.com/saphelp_gateway20sp05/helpdata/en/fa/dffd46fc024158927dfdfc2ea68891/content.htm and https://help.sap.com/saphelp_gateway20sp05/helpdata/en/d6/9044e0d1c440148b3bc43d76e22ae4/content.htm

Maybe you are looking for

  • Time Machine error after restoring all data

    Sorry, I've tried to run through various trouble shooting guides on Time Machine (notably here http://pondini.org/TM/C4.html etc) but haven't been able to work out a solution. I just had my iMac harddrive replaced and earlier did a full restore of th

  • What's Wrong about deploy ADF BC to Standalone OC4J(10.1.3) as SessionEJB

    I feel very very angry ! pls save me i have ever test an empty AppModule without any vo ,it works well. Then i added one VO into it ,it still work well. when i add another vo into it ,it does not work. all my appmodule deployed onto standalone oc4j o

  • Function Module to create TSW-TICKET

    Hi, I was using FM 'OIJ_EL_A_TICKETS_MAINTAIN_N' to create a ticket, with the similar data by which I was actually able to create a ticket manually using O4TEN. The ticket is not actually created completely by this FM. The FM is creating a record in

  • BAPI/FM for PRT's

    All, I am trying to find a BAPI or function module that can attach a PRT (DMS Document PRT to be specific) to an existing task list. Can anyone please provide the correct FM or BAPI?  What Package would FM's for PRT's be stored under?

  • [NEW] Kbandwidth 1.0.4

    Network monitoring Kicker-applet for KDE 3.x. This tool can show speed of any network interfaces. For example traffic of your ADSL, LAN, Modem or others. PKGBUILD # Maintainer: Pointer <[email protected]> pkgname=kbandwidth pkgver=1.0.4 pkgrel=1 depe