How to send User Master Data through XI

Dear SAP gurus,
We are currently configuring the e-recruiting module on a separate server than HR (following the SAP standard). 
As our CUA is not connected to the E-REC systems, we are looking for a way to send properly the User Master Data from HR systems.  We have seen that the report RSCUSND enable us to send iDoc with message type USERCLONE, but this repport can be only run from the CUA then we can t use it.
Another solution is to make a client copy with the profile SAP_USER, but we can t use this solution because in order to get the User Master Data in a real time we should make the copy each 15 minutes.
We can t figure out with the question, what is the standard way to send User Master Data to our E-Recruiting module
Regards
Hadrien

HR side:
1-Below t-code is what you should go through:
SM59
BD64
WE20
WE21
2-The key interface object is as below(I used it in LSMW, XI should be the same):
Business Object      HRMASTER    
Method               SAVEREPLICAMULTIPLE        
Message Type         HRMASTER                   
Basic Type           HRMASTER02                 
XI side:
1- The XI has the HR interface package in IR. You just need to select those you need.
2-Goto ID and do interface mapping between IDOC interface & XI outbound interface
All above is the skeleton processes. U can consult with XI consultant in details.
Hope helpful..

Similar Messages

  • How to send internal table data through mail from report in foreground

    hi all,
    iam trying  to convert the internal table data into excel format and sending it through mail by runnning the report in foreground.
    mail is going sucessfully with excel format,but iam facing the problem in the excel format of the material column as follows:
    the matrno shows the wrong format -2.63E+11  instead of displaying correct format-263215000000.
    Pls suggest the alternative process for the above mentioned problem.
    Thanks,
    Sivagopal R.

    Hi Siva,
      Try to copy 263215000000 in one of the cells of excel sheet and press enter.It will automatically convert into -2.63E+11 .
      This means the default formatting of the excel sheet makes this happen.If you convert the format of the cell to "NUMBER" then u will get the required result.
      But I doubt whether or not it is possible through ABAP programming.
    Regards,
    Vimal.

  • How to send the form data through mail with pdf format?

    forms 6i
    Hi to all,
    i am developed one master detail form.example is based on the dept number emp details will be displayed.here my requirment is whatever displayed on the form
    the data ,these data send to mail with any format.is it possible? if is possible any one give a proper solution.
    Regards,
    Stevie
    Edited by: 994418 on 6 May, 2013 11:15 PM

    Hello,
    you can create a Report that accepts the search parameters from the Forms mask and generates a PDF. You also have the option to send the report via mail.
    Personally I would generate the report with a tool like as_pdf
    http://technology.amis.nl/2012/04/11/generating-a-pdf-document-with-some-plsql-as_pdf_mini-as_pdf3/
    Then you can send the mail using utl_mail or utl_smtp.
    www.google.com/search?q=site:forums.oracle.com+utl_mail+utl_smtp
    Regards
    Marcus

  • How to export user master data in SAP HANA?

    We have a HANA server SP7 and we need to migrate it to a new server which will also be HANA SPS7. However the backup/restore approach is not to be used as confirmed by client. We are going to perform a export/import of all the important schemas. The question here is how to take an export of the users and roles in this scenario

    Hi Meenu,
    As Michael mentioned you can't export roles and users in a general way.
    To add to it, you can always export users and roles if they are created used development workbench. That means if your developer has created any repository roles or users using development workbench or WebIDE you can export them by assigning those roles/privileges to a package/delivery unit. Make use of studio/HALM/CTS for that.
    However to export users and roles created by admin workbench using gui can't be exported.
    Happy HANA
    **Deepak Chodha

  • How to  send ALV output data into Excel sheet format via Mail to the user?

    Hi friends,
    I have a doubt ie,
    How to  send ALV output data into Excel sheet format via Mail to the user?
    regards
    Moosa

    Hi,
    Provide the output internal table to the objbin in the below FM
    Send Message
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                document_data              = i_docdata
                put_in_outbox              = c_x
           TABLES
                packing_list               = i_objpack
                object_header              = i_objhead
                contents_bin               = i_objbin
                contents_txt               = i_objtxt
                receivers                  = i_reclist
    and specify the document type
      i_objpack-doc_type   = 'XLS'.
    and try.
    Regards,
    Nandha

  • Maintain out put device in your user master data

    Hi Experts,
    My invoice is not get printing, it is giving error as maintain an ouput  device in your user master data
    I have maintained output in SU01->user id->Default->printer name.
    still invoice is not printing it is giving same error & if i directly give print it gives error
    *An error occurred while output was being issued. It is possible, for example, that the form to be issued has not been activated or has an error. An error may also have arisen while the data to be issued was being edited.
    Procedure
    Check possible causes of the problem.*
    if I go in SP02 & check that spool request gives following error
    Spool request 29,663 in system SPS is empty
    If i send it by ZPDF it gives following error
    OTF end command // missing in OTF data
    Error in function CONVERT_OTFSPOOLJOB_2_PDF
    can anybody guide me?
    Thanks
    Trupti

    Hello
    Try using Tcode SPAD.
    Kindly refer following links for reference:
    - Please maintain an output device in your user master data. - Smartform
    - Maintain output device in user master data
    - update was terminated: maintain output device. How to avoid?
    Thanks & Regards
    JP

  • How do I access session data through an EJB?

    Hi
    How do I access session data through an EJB?
    I am currantly developing a Web service (using ejb's, JBoss.net and Apache Axis). A client making a call to this Web service, is expecting a bussiness-object in return. My problem is that this bussiness-object i stored in a users session data. How do I retrieve this bussiness-object from the users session.
    I have read that this does not work with httpsessions, is this true? If this is true, is it possible to store the bussiness object in a JavaBean e.g:
    <jsp:useBean id="userContextWebImpl" scope="session" class="com.ac.march.client.UserContextWebImpl">
    <%
    String key = "test";
    String value = "This is the value";
    userContextWebImpl.setValue( key, value1 );
    %>
    </jsp:useBean>
    and then retrieve this information through the EJB? Or is it possible to do this by using Statfull JavaBeans? Or can this be done through a nother solution?
    Please help!

    I have created a JavaBean with scope="application" to store some data. The data is stored when a user prefomes a spesific task.
    A different person then makes a call to a Web-Service on the server. The Web-Service then asks an EJB to retrieve the data stored in the JavaBean (servlet cotext). In other words: How do I retrieve this data from the EJB?
    I have tried with this code, but with no luck.
    (ApplicationContextWebImpl is the JavaBean)
    public static String getBookingResult( String key )
         String myResult = null;
         String myKey = key;
         ApplicationContextWebImpl applicationContextWebImpl = null;
         try
              applicationContextWebImpl = new ApplicationContextWebImpl();
              myResult = (String)applicationContextWebImpl.getValue( key );
         catch ( java.rmi.RemoteException e )
         return myResult;
    }

  • Restricting Creation/Update of Profit Center Master Data through KE51/KE52

    Hi,
    I have a scenario where profit center master data is maintained in MDM which acts as central repository and the master data is syndicated from MDM to ECC through PRCMAS IDoc. Business requirement is that since MDM is acting as central repository creation/update for profit center through transactions KE51/KE52 should be restricted in ECC. I know that through roles we can restrict user to create profit centers but is there any way/configuration steps which we can perform to restrict user to create profit centers through transaction and I also want to know if that process would affect the creation/updation of master data through PRCMAS IDoc.
    Thanks,
    Amit

    Hi,
    As I told you can go forward using SetID but for that you have to create the SET than assign it to a table and also have to cutomize a standard FM.
    Meanwhile I will tell you a easy way you can opt for Transaction Variant usinh SHD0 where dont give the option to save so that no user can create any Profit Centre and than assign that Tcode to the users.
    Its a simple way hope it helps you.
    Thanks
    Arbind

  • Error in sending HR Master data to CRM - PFAL error

    HI expert ,
    I am sending HR master data to CRM system through PFAL transation. I am using HRMD_ABA message type to send the data.
    While executing i am getting the error like this " Internal error: Program read table idoc_structure,
    command data_select_for_block, argument Z1P0002 " . I have a custom segment  ZIp0002 for ci_p0002 . Can you please suggest any solution to solve this.
    with regards
    RKM

    Hi,
    An extension of an infotype should be created in segment Z1Pxxxx where all fields of E1Pxxxx and the additional fields should be inserted. The entry in T777D should have Z1Pxxxx for field Idoc segment as described in note 105148.
    Please, check also note 165699.
    As of Release 4.6: In the customer enhancement RHALE001, fill the function exit EXIT_SAPLRHA0_004 with the line
       F_idoc_control-cimtyp = 'ZRMD_AXX'.
    Where ZRMD_AXX is the enhancement/extension you created.
    Regards,
    Ana

  • How to create customer master data for walking customer in retail

    hi experts !!!!!!
    for retail industry e.g books trading industry
    how to create customer master data for walking customer in retail
    its dummy or one time customer
    if i create one time customer then same customer number can i use for every new order and every new customer how ?????
    thanks

    Dear Hanumant,
    As per my view,,
    You can use one time customer functionality to full fill your requirement.
    When you create sales order with one time customer system take you to the customer data maintanence screen through that you can maintain the one time customer data.
    Same one time customer number you can use for every new order through maintaining different data.
    I hope this will help you,
    Regards,
    Murali.
    Edited by: Murali Mohan.Tallapaneni on Dec 19, 2008 6:08 AM

  • Error : please mention output device in user master data

    I am new to ABAP development.I have created a smartform of address as a main window,then call the function module in a report program. When i run that report program, i m getting screen asking for output
    device saying "please mention output device in user master data".
    In main window, i have selected an address number whose details is to printed in the form,but instead of displaying the address, it's asking for output device.
    can you please tell me where lies the error & how to get rid of that?

    Hi Anupam,
    Refer this [wiki|https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/massAddressorLabelPrintinginSMARTFORMS]
    Regards,
    Sravanthi

  • Loading of master data through input schedule

    Hi guys!
    Is any solution for loading/updating of master data through input schedule?

    Hi Maxim,
    In addition to all above, Input Schedules are used to enter and send data for whatever dimension members you have maintained in BI or BPC.
    The master data can be maintained in BI, then you need ot load data from BI and it will be reflected in BPC.
    If you want to make changes in master data in BPC, then you need to goto Admin, select whatever properties you want to display and then Maintain Dimension Members for the same.
    However, you can also import master data from BI using DM packages in BPC Excel.
    Hope this clarifies.
    Rgds,
    Poonam

  • Loading of master data through flat files

    Hi
    can anybody tell how to load master data through flat files.As for as my knowledge we load characteristic and attributes values first and then we load text and then hierarchy.
    is it right or is there any procedure to load all values at a time.
    sai

    Hi ,
    condition1:The sequence of columns in the transfer structure must correspond to the sequence of columns in your flat file
    chk this help.sap link
    http://help.sap.com/saphelp_nw04s/helpdata/en/c8/e92637c2cbf357e10000009b38f936/frameset.htm
    Hope this helps you!!!!!!!
    cheers,
    Swapna.G

  • How to Lock the master data. R/3 Conflict ESS

    Dear Gurus,
    Please guide me how to lock the master data for a nos of days(say 7 days).
    Recently we had encountered an issue, related to ESS. While Uploading the Time data through t-code: PT60, our core team encountered a problem, that such and such employee number is locked.
    While checking, they identified it, system shown error against those employees, who are accessing their ESS. We check and came to know they are accessing the master data by changing their personal record i.e. address.
    Do we have any other provision to lock the master data without setting the control record to release for payroll.
    Please help .

    Create a custom transaction involving a custom views of table T7XSSSERSRV  with the following field for each service
    "V_T7XSSSERSRV-ISDISABLED"
    when HR wants to lock it, the will enter this table and check this field.
    this will disable the servcies in the front end.
    Once the 7 days are over, HR will uncheck this field. this will re-enable the services in the froint end.
    Hope this helps.

  • User Master Data Changes in CUA Environment

    Hello,
    when a new user gets created.we have requirement for Indian system to set the decimal notation in user master data by default to 1,234,567.89 ,instead users doing it manually using SU3.We are using workflow tool for user creation.Globally our systems are connected to CUA system.User gets created in CUA system and then master data is distributed through IDOC to child systems.
    Now by defalut it the decimal notation is set to 1.234.567,89.

    Dear Sagar,
    Try to see which tables are changing when you chage that field with help of ABAP and then incorporate the same logic in your workflow for India User. I think there will be a need to add one more field in your workflow and should be done.
    But make sure you put some logic in your workflow if this India user then add this new field.
    Regards
    Shailesh Mamidwar

Maybe you are looking for