Communication details in ESS

When we see communication details in ESS under who's who option, system is displaying Building Number and Room number. From which Infotype in SAP R/3 this information is being picked up ??

Hi Vidhya,
These details are picked up from SU01 - User master.
You need to update them using the Tcode SU01 and check for the changes.Give your ESS user id through which you login and click change. Check the Address tab and you will find the "Department", "Room Number", "Floor", "Building" here. Update the values here.
Generally SU01 authorization is not given for all users. So if Authorization is not there, get help from your BASIS team.
Hope this helps you.
Reward if this helps.
Regards,
Subbu.
Message was edited by:
        Subramanian Padmanaaban

Similar Messages

  • CRM To ECC Sold to party Communication Details Not populated in ECC

    Hi All
    i have one problem when we create sales order through crmd_order we need to give sold to party and ship to party numbers suppose like
    8000002166 for both and status i keep as order created and in partner tab i i seem all partner funtions(sold to, ship to ,bill to, payer)with 8000002166
    in header overivew i given posting date as feature date like 30-09-2013 then i try to save this order.
    the order generated sucussfully but problem is i am not getting sold to party details in ECC when i check VA03 And open cretaed order in CRM and clicking on sold to party and i seem details for this but i am not getting communication details like telephone number and email id extension number.
    for this sold to party we already maintained all communication details in CRM.When i open this sold to party BP i am able to see all details
    didnt understand why these details not replicated to ECC?
    We implemented one custom class there we implemented badi.
    IF_EX_CRM_DATAEXCHG_BADI~CRM_DATAEXCH_AFTER_BAPI_FILL
    i am not getting BAPI ADDRESS Table values into  CT_BAPIADDR1
    how can i send communciation details to ECC For sold to party?
    The code part we follow like below
    TYPES : BEGIN OF t_otc,                                                        " Type to create a table with the given columns.
              bpid            TYPE bu_partner,                                       " variable of store processed business partner ID's
              otcid           TYPE bu_partner,                                       " variable of store processed OTC ID's
              otcguid         TYPE bu_partner_guid,                                  " variable of store processed OTC GUID's
              address         TYPE bapibus1006_address,
              tel1_numbr      TYPE ad_tlnmbr1,
              tel1_ext        TYPE ad_tlxtns1,
              e_mail          TYPE ad_smtpadr,
              END OF t_otc.
    *&                             V A R I A B L E S                         &*
      DATA : lv_bp_payer      TYPE bu_partner,                                       " Variable To Cast the payer Id into BU_Partner data type.
             lv_partner_fct   TYPE crmt_partner_fct,                                 " Variable To Store Partner Function Number.
             lv_partner       TYPE bu_partner,                                       " Variable To Store Current Business Partner ID.
             lv_process_type  TYPE crmt_process_type,                                " Variable to Store process type.
             lv_sales_org     TYPE crmt_sales_org,                                   " Variable to store sales org. name of order
             lv_dis_channel   TYPE crmt_distribution_channel,                        " Variable to store distribution channel of order.
             lv_division      TYPE crmt_division,                                    " Variable to store division of sales org. data.
             lv_role          TYPE comt_partner_parvw,                               " Variable to store retrieved role from FM.
             lv_role_value    TYPE parvw,                                            " Variable to store the role value of Partner Functions.
             lv_otc_guid      TYPE bu_partner_guid,                                  " Variable to store OTC GUIDs for the OTC ID.
             lv_otc_id        TYPE kunnr.                                            " Varaible to OTC ID revocered from Table.
      DATA: lv_busspartner           TYPE bapibus1006_head-bpartner,
            lw_central_data          TYPE bapibus1006_central,
            lw_centraldata_person    TYPE bapibus1006_central_person.
    *&                             W O R K A R E A S                         &*
      DATA : lw_address       TYPE bapibus1006_address,                              " Work Area to store address recovered for BPID.
    *Start of code change for Defect 904 Fix
             lw_tel           TYPE bapiadtel,
             lw_email         TYPE bapiadsmtp.
    *End of code change for Defect 904 Fix
    *&                          INTERNAL TABLES                              &*
      DATA : li_otc           TYPE TABLE OF t_otc,                                   " Internal Table to Store the OTC IDs and BPS.
             li_values        TYPE          zconst_values_t,
    *Start of code change for Defect 904 Fix
             li_tel           TYPE STANDARD TABLE OF bapiadtel,
             li_email         TYPE STANDARD TABLE OF bapiadsmtp.
    *End of code change for Defect 904 Fix
    *                       F I E L D - S Y M B O L S                         *
      FIELD-SYMBOLS: <f_orderadm>      TYPE bad_orderadm_h_mess,
                     <f_otc>           TYPE t_otc,                                   " Field-Symbol to Read the OTC TABLE data.
                     <f_partner>       TYPE bad_partner_mess,                        " Field-Symbol of Partner Table For Looping.
                     <f_bapiparnr3>    TYPE bapiparnr3,                              " Field-Symbol to Store The Row of BAPIPARNR3.
                     <f_bapiaddr1>     TYPE bapiaddr1,
                     <f_orgman>        TYPE bad_orgman_mess,                         " Field-Symbol to Read the ORGMAN table.
                     <f_values>        TYPE zcr_const_values.
    *&                             C O N S T A N T S                         &*
      CONSTANTS :  lc_program_name     TYPE progname      VALUE 'ZOTC',
                   lc_param_payer      TYPE paramname     VALUE 'PAYER',              " Constant to Store Payer Parameter name.
                   lc_ref_kind         TYPE crmt_object_kind VALUE 'A',
                   lc_req_1            TYPE zrequest_no VALUE '1',
                   lc_req_2            TYPE zrequest_no VALUE '2'.
    * Retrieving the general and Common Data for a Order.
      READ TABLE it_bus_trans_msg-orderadm_h INDEX 1 ASSIGNING <f_orderadm>.
      IF sy-subrc EQ 0.
        lv_process_type = <f_orderadm>-process_type.
      ENDIF.
    * Reading the Orgnisation Details from ORGMAN Table.
      READ TABLE it_bus_trans_msg-orgman WITH KEY ref_kind = lc_ref_kind ASSIGNING <f_orgman>.
      IF sy-subrc EQ 0.
    *   Storing the Sales Organisational Data to find the OTC_ID.
        lv_sales_org = <f_orgman>-sales_org.
        lv_dis_channel = <f_orgman>-dis_channel.
        lv_division = <f_orgman>-division.
      ENDIF.
    * Retrieving the partner function number for the payer by giving requirement no 2 and rule no 1.
      CALL FUNCTION 'ZCRAN_GET_CONSTANT_VALUES'
        EXPORTING
          pi_program_name = lc_program_name
          pi_req_no       = lc_req_2
        IMPORTING
          po_const_values = li_values.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    * Reading the value for the constant with the name as PAYER.
      READ TABLE li_values WITH KEY param_name = lc_param_payer ASSIGNING <f_values>.
      IF sy-subrc NE 0.
        RETURN.
      ENDIF.
    * Retrieving the Partner ID for the PAYER.
      READ TABLE it_bus_trans_msg-partner ASSIGNING <f_partner> WITH KEY ref_partner_fct = <f_values>-constant_value.
      IF sy-subrc EQ 0.
    *   Storing the current partner ID.
        lv_bp_payer = <f_partner>-ref_partner_no.
      ENDIF.
      REFRESH li_values.
    * Retrieving the Partner Function Number which are to be checked for replacing with the OTC ID with request no 1 and rule no 01.
      CALL FUNCTION 'ZCRAN_GET_CONSTANT_VALUES'
        EXPORTING
          pi_program_name = lc_program_name
          pi_req_no       = lc_req_1
        IMPORTING
          po_const_values = li_values.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    * Transferring the constant value to our table for Partner Fucntion.
      LOOP AT li_values ASSIGNING <f_values>.
    * Read Partner table for Header data and the reference partner function retrieved.
        READ TABLE it_bus_trans_msg-partner WITH KEY ref_kind = lc_ref_kind ref_partner_fct = <f_values>-constant_value ASSIGNING <f_partner>.
        IF sy-subrc EQ 0.
    *     Storing Current Partner Function.
          lv_partner_fct = <f_partner>-ref_partner_fct.
    *     Storing Current Partner No.
          lv_partner = <f_partner>-ref_partner_no.
    *     Retrieving the Partner Role (R/3) for the current partner function of CRM.
          CALL FUNCTION

    The problem is in the Lotus Notes security level, not in SAP.

  • Error while updating bank details through ESS

    Hi All,
    While updating banks details through ESS, " change in the payroll past not possible".
    I have checked IT0003 and noticed that accounted to  31.08.2014.
    I assume this might be causing the error. Could you please advice with your expertise.

    Let me explain how it happens and why we don't allow change of bank records in past 1959820 - ESS: Wrong delimit of TC3 records For other scenarios where ESS behavior is similar to PA30 :
    An example i share
    For other scenarios where ESS behavior is similar to PA30 :
    Current date < End date of current payroll period
    Current date > Accounted to date in IT0003
    Payroll status: released for payroll Got error when reviewing the editin
    -g.
    Error: Online maintenance is locked in payroll area QM
    Current date < End date of current payroll period
    Current date < Accounted to date in IT0003
    Payroll status: released for correction Got error when reviewing the edi
    -ting.
    Error: Change in the payroll past not possible
    Current date < End date of current payroll period
    Current date < Accounted to date in IT0003
    Payroll status: released for payroll Got error when reviewing the editin
    -g.
    Error: Online maintenance is locked in payroll area QM
    When the infotype 0009 is modified, the system is regrouping data for the infotypes which are checked releavnt according to the table T582G. Retroactivity is checked via V_T582A In view V_T582A for infotype 0009 you will see, I guess, that the field 'Past entry all.' is maintained with an 'E'. This means that it is not allowed to maintain any infotype 0009 record for the payroll past. The important day for this check is the last day of the last accounted period. Retroactive change of infotype 0009 is not permitted as the bank transfer is already done. This is the reason why this infotype can not be changed retroactively. For bank records end user must not be allowed to maintain past date records and should not be allowed to change any other detail of record when payroll for that period is already run. for e.g. if current date is 26/11/2013. Then end user must not be allowed to edit other bank record effective from 25/11/2013. We should not allow end user to edit record effective from 27/11/2013 because payroll is already run for that period. If user is allowed to change then data maintained in infotype 9 and information send to payroll may be different. You can use BAdi HRXSS_PER_BEGDA,to default the next payroll period

  • Update Address and communication  Details of BP

    Hi,
    Requirement is we need to update address and communication details of BP, please let us know relative BAPI for the same. Below roles has to be updated with given address and communication details,
    General Role
    Employee Role
    Help full information will be appreciated..

    Hi,
      For updation of address you can use
    BAPI_BUPA_ADDRESS_CHANGE.
    I guess you cannot update a role . You can only add new roles with BAPI_BUPA_ROLE_ADD .
    One more thing in address updation, Whatever fields are there in import parameter ( Address) you can update them even if they are not present in database.
    But in case of Tables( Communication details)  fields you can only update if the values are existing in database.
    Reward if helpful.
    Regards
    Sourabh

  • SAP Vendor Master Communication Details for SMART FORM Printing.

    Hi
    Could you please advice Functional module to extract SAP Vendor Master Communication Details for SMART FORM Printing.
    Thanks in Advance.
    Regards
    Ravi

    Hi Ravi,
    I don't know about a function module, but the vendor master table LFA1 has a field ADRNR pointing to the general address table with the fields for e.g. language and to the tables ADR2 for phone numbers, ADR3 for fax numbers and ADR6 for e-mail addresses.
    BR
    Raf

  • Communication Details Vendor Master SMART FORM Printing.

    Hi
    Could you please advice Functional module to extract SAP Vendor Master Communication Details for SMART FORM Printing.
    Thanks in Advance.
    Regards
    Ravi

    Hi,
    class VMD_EI_API_EXTRACT with method GET_DATA could make it.
    There are also some eSOA services that could make it fine. See services starting with Supplier*.
    Otherwise, this is more complicated.
    BR
    Alain

  • Family Details in ESS personal information

    Hi gurus,
    how to edit the family details in ESS personal information .
    when i click on family details link it is showing me spouse , child details
    beside child and spouse details there is a edit button, when i click on edit button it is showing the information in display mode,
    i want to change this to edit mode so than employee can change and save his family data.
    Note:- i have searched SDN , what i found is ,how to hide that edit button
    throw some light on this.
    Regards
    K Naveen Kishore.

    Hi Navin,
    Looks like some one has made fields readonly.
    1. It can be done via personalization
    2. It can be done from NWDS
    Do the personalization and make the fields required fields editable.
    See tish help link on how to do personalization.
    http://help.sap.com/saphelp_nw70/helpdata/en/42/ed3ce7f8593eebe10000000a1553f7/content.htm
    Make sure ur user id has the Content Admin role and the valid pernr attached.
    Regards
    Yugandhar Reddy

  • Update Communication details in HR - PA30

    Hi all,
    I want ot update Communication details for Pernr in T-code : PA30. Infotype -0105, Subtyp - 0001/0010.
    This data should be updated in PA0105 table . Is there any FM's are there to update this or else should we use BDC?
    Regards,
    Balavardhan.K

    hi check this..
    Report abc.
    DATA : P0015 LIKE P0105.
    DATA : RETURN LIKE BAPIRETURN1.
    DATA : KEY LIKE BAPIPAKEY.
    DATA : RETURNE LIKE BAPIRETURN1 .
    P0015-PERNR = '1'.
    P0015-BEGDA = '2061101'.
    P0015-ENDDA = '2061101'.
    P0015-SUBTY  = '0010'.
    P0015-USRID = 'TEST'.
    P0015-USRID_LONG = MAILADDRESS.
    CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
    EXPORTING
    NUMBER = p0105-pernr
    IMPORTING
    RETURN = RETURNE.
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
    EXPORTING
    INFTY = '0105'
    NUMBER = P0105-PERNR
    SUBTYPE = P0105-SUBTY
    OBJECTID = P0105-OBJPS
    LOCKINDICATOR = P0105-SPRPS
    VALIDITYEND = P0105-ENDDA
    VALIDITYBEGIN = P0105-BEGDA
    RECORDNUMBER = P0105-SEQNR
    RECORD = P0105
    OPERATION = 'MOD'
    TCLAS = 'A'
    DIALOG_MODE = '0'
    IMPORTING
    RETURN = RETURN
    KEY = KEY.
    IF RETURN IS NOT INITIAL.
    WRITE :/ 'Error Occurred'.
    ENDIF.
    Dequeue
    CALL FUNCTION 'BAPI_EMPLOYEE_DEQUEUE'
    EXPORTING
    NUMBER = P0105-PERNR

  • Problem with updating Passport details from ESS portal

    HI Experts,
    Some of my employees were unable to input passport details from ESS portal -own data.
    Employee who belong to south korea are getting the problem.
    Even though we fill every field,system is showing an error that "" Fill in all required entry fields ""
    In spro...we maintained country grouping as 41 and IT 0185 and subtype and we use rthe case B2 in speciy use case and activity subtypes.
    Another thing,when we update data in 0185IT by R/3 by backend it is not showing up the details in ESS.
    Could you please give me an idea to resolve the problem.
    Regards,
    Sairam.

    Hi Experts,
    No details were maintained in the table V_T588MFPROPC  for this infotype.
    Employee with other country grouping were able to up-date passport details in portal.
    Where as south korea employees are not able to update the passport details.
    For south korea employees..they have to  update  passport details with sutype 01 in ESS portal.
    Even though we fill  all the details it is showing fill in all required entries.
    In table V_T588MFPROPS..no details were maintained for version  41.
    In portal we have to maintain..ICNUM,ICOLD,AUTH1,FPDAT,EXPID,ISSPL,ISCOT,IDCOT.
    In r/3(by backend) we can maintain all these details including  ID TYPE(ictyp).We have only one subtype(passport) in 0185 for this south korea.What details shall we need to maintain for version 41.
    Please let me know,why system is showing error even we maintain all the details.
    Please advice.
    Sairam.

  • Contact person communication details(Tel No,Fax No, Email)

    Hi
    Could you please advice how to extract customer master's Contact person communication details(Tel No,Fax No, Email) .
    Thanks in advance
    SR

    Hi Ravi,
    Get the address number(ADRNR) from the table KNA1 using customer number (KUNNR).
    And query below tables to get required details using the address numbere(ADRNR) = ADDRNUMBER.
    ADR2 - Telephone number
    ADR3 - Fax number
    ADR6 - Email address.
    Hope this helps..
    Regards,
    Ashwini

  • Iview Settings For Bank Details in ESS

    Hi All,
    1)When i am Trying to Change the Bank Details Information in ESS,the System is not alllowing me to Enter a Bank key change and giving a message that only 11 digit bank Key is permissible .

    Hi Vivek,
    I can Find the Bank length Key of 11 For IN .So you mean to say that this particular Config is Hitting the Ess Input.But There is no such Message Flashed in R/3.So,why such Disconnect .Can u Plz Throw some Light.
    Punam
    Edited by: Punam Jha on Oct 8, 2009 3:18 PM
    Edited by: Punam Jha on Oct 8, 2009 3:22 PM

  • Restrict bank details in ESS.  allow two other bank records infotype 0009

    I have a user exit that can restrict the user to only create 2 infotype 9 with a subtype of 1. But the ESS application does not us the same screen user exit as the back end. Is there a way to limit the user to only be able to create 2 bank details using the enhancement framework or a badi. I am getting java errors when trying to cancel or exit after or before the create method in the if_hrpa_pernr_infty_xss interface. I have been looking at the hrxss_per_new_p0009_xx functions. I would like to accomplish this without changing the java code, if possible

    Hi Dominic,
    I am just checking to see if you ever successfully implemented this solution in your portal? We need to implement the same logic, and I am having trouble taking into consideration the future dated records that an employee might attempt to create. E.g. if an employee already has 2 records dated 01/01/2009 - 12/31/9999, then attempts to create a new record dated 06/01/2010 - 12/31/9999, this record will cause the employee to have 3 records in the future, starting 06/01/2010, but this should not be allowed.
    Please let me know if you built these checks into your user exit, or if you are aware of alternative methods to check and implemented this requirement.
    Thank you.

  • Previous Employment Details in ESS

    Hi Experts,
    We are implementing ESS and MSS for our client. The client wants to see the Previous employment details that is maintained in Infotype 0023 in ESS.
    Can any body tell me what needs to be done with respect to the configuration from ESS point of view.
    or is there any other way to achieve this.
    Regards,
    Smitha

    Re: Previous Employment data

  • Customizing Bank details in ESS

    Hi,
    I am looking for how to hide a field in infotype 9. (fieldname EMFTX) Is it possible to hide this field only in ESS or do I have to use table v_T588M?
    Best regards
    Kjersti

    Hi Kjersti,
      You can hide the field through personlaization. This is done only in the portal so it will be hidden only in the ESS.
    Do these steps.
    Login as content admin. Go to the ESS bank iview -> Preview. Press CTRL+right click, the personalization window will be shown, hide the field which you want to. save and close.
    Now the field will be appear  hidden in the Bank application.
    Regards,
    Sharadha

  • Issue with updation of PAN details in ESS after applying patch

    Hi ,
    We have applied a new patch recently,
    as follows:
    SAP_HR - To patch - 49
    EA_HR - To Patch - 49
    When users are trying to update PAN details it says throwing error " fill in the required fields,"
    i tried to apply relevent note :1243216 , but iam not able to apply it as system says it cannot be implemeted.
    Can any body come accross this issue please give me solution as this issue has become critical.
    Thanks in advance .
    Regards,
    Evani

    Duplicate post.
    After applying patch , error found on bottom of signon screen
    After applying patch , error found on bottom of signon screen

Maybe you are looking for