Copy All Employee Master Data

Dear All,
In Human Recource module I have a list of Employees, Now I create new database and want to copy all Employee Master data from old database to new database . Please give me the solution for this problem.
Thanks & Regards

HI All,
Option
1) you may write a querry and get desired data what you need for SAP's standard template of DTW and then export that template in the excel and again with the help of DTW you can migrate that in your new database.
2) select required tables from SQL Server Management which is OHEM and HEM6 copy it and paste in the desired database. But be carefull you have to have knowledge of SQL.
i still think the second option is quiet easy will take just 10 -15 min.
Ashish Gupte

Similar Messages

  • How to edit employee master data form in SAP B1 9.1?.

    Hi all,
    I have a problem in SAP B1 9.1.
    Is it possible to edit form of Employee Master Data in SAP B1 9.1 without creating an Add-On? Likes how other forms can be edited.
    Please anyone can help me.

    Hi Edey,
    Can you please refer to this link:
    How to create add-on of a system form in sap b1 9.0?
    or 9.1?.

  • How to change title of Employee Master Data form (in add-on creation) in SAP B1 9.1?.

    Hi all,
    I have a problem of how to change title of my add-on in SAP B1 9.1.
    I created the add-on of Employee Master Data but I want to change its title, is it possible?
    When I change the title as (Member Master Data) in property, it will display Employee Master Data again.
    If it is possible to change it, how can I do?
    Please anyone can help me.

    Hi,
    Try this:
    If pVal.FormType = 60100 AndAlso pVal.EventType = BoEventTypes.et_FORM_LOAD AndAlso pVal.BeforeAction = False Then
      Dim oForm As SAPbouiCOM.Form = DirectCast(oApplication.Forms.GetForm(pVal.FormType.ToString(), pVal.FormTypeCount), SAPbouiCOM.Form)
      oForm.Title = "New Title"
    End If
    Or you can try:
    If pVal.FormType = 60100 And pVal.EventType = BoEventTypes.et_FORM_LOAD And pVal.BeforeAction = False Then
         Dim oForm As SAPbouiCOM.Form = CType(oApplication.Forms.GetForm(pVal.FormType.ToString(),pVal.FormTypeCount), SAPbouiCOM.Form)
    oForm.Title = "New Title"
    End If
    Hope it helps.
    Thanks & Regards
    Ankit Chauhan

  • To Create employee master data.

    Hi,
    How to create employee master data from scratch in SAP-HCM through BAPI's. Then we need to insert data in infotype 0000, 0001 and 0002 for that employee.
    Thanks in advance.
    Regards,
    Rajesh Kumat

    first check, if customizing for all fields is done.
    You will need a action type for hiring a person with infotypes 0000, 0002, 0001.
    Infotype 0001 is not so easy, because many checks are done in modul pool.
    The number range for PERNR can be set to internal or external (its your decision), transaction PA04.
    if you create a new PERNR you may wish to keep the old (legacy) one. you can use infotype 0032 or 0105, add it to the hiring action.
    If your legacy data comes with a flat file LSMW is a good tool to import master data.

  • Problem in Fetching value from Employee Master Date in Crystal Report

    Hi All,
    I am using the SAP Standard report for Sales Quotation and now my client needs a new requirement.
    That is, for certain sales employee they need a manger and the manager name, email, mobile no from employee master data should be fetched.
    I tried this way,
    Assigned the Manager name in the OSLP, memo field and tried to equate the employee name in the OHEM table by using a parameter and tried to fetch the fields but i am not able to view any of the fields from the OHEM table.
    How to fetch the fields from the OHEM table?
    Help me solving this issue.
    Regards,
    Jananisuba S

    hi.
    Janani..
    Fetching means what .
    i am not able to understood...
    linking you are not able to understood or any other.
    in crystal report are u getting the problem.
    First in sql it slef are u able to get the problem..what just explain...

  • Unable to Add Bank Details in Employee Master data................

    Hi All,
               I am Unable to select the Bank Name in Bank Details field-Finance Tab- Employee Master data window.
    Where as I can see the bank names for other employees which were already added earlier.
    Thank you,
    Sree.

    Hi,
    This issue mentioned is not a bug but handling issue.
    Kindly check the following and the same will resolve your issue :
    Select the Home adress in Human Resources -> Employee Master Data -> General tab -> Home Address.
    After that in Finance Tab you can choose the bank, but the rest of fields (branch, Branch No, Account no.) you have to fill in manually.
    Every bank must be in a certain country, you can't define a bank with no country. To define details for bank > Go to > in Admin > Definition > Banking and double click on the bank name.
    Hope it helps.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Employee Master Data - Banks do not show up

    Hi all,
    On the employee master data, when I want to choose the bank for the employee, the list doesn't show up on the drop down menu, just "Define New".
    But this issue only happens with some employees, on the others the bank list shows up.
    Anybody have any idea?
    Thanks,
    Pedro Santos

    Hiii Pedro
    Check this SAP Note1112098, relates to your issue
    which says
    Bank Details missing in the Employee Master Data
    Symptom
    In the Human Resources -> Employee Master Data -> Finance tab, nothing appears when you select the drop down list in the 'Bank' field. Why is this?
    Other terms
    Employee, finance, bank, bank details, branch, account, human resources, HR, SAP Business One
    Reason and Prerequisites
    Consulting
    Solution
    In order to select the 'Bank' in the 'Employee Master Data', you need to firstly define the 'Home Address Country' in the Address tab -> Home Address area.
    Once done, you can now choose the Bank ID in the 'Finance' tab and
    fill in the rest of the fields (Account No, Branch).
    Rizz

  • Dead Space in Employee Master Data form?

    Hi all. I am having a very difficult time placing sap and user defined objects on the Administration Panel in the Employee Master data form. I am referencing SBO objects but my objects are not being placed where I specify. It's as if there is an invisible object in the center of the Panel that randomly pushes other objects out of the way.
    Has anyone else run across this? Any suggestions are deeply appreciated.
    Thanks

    Here is part of my code, thanks Gordon.
    #region Column One
                //Classification Label
                c_oRelativeItem = c_oForm.Items.Item("92");
                c_oItem = c_oForm.Items.Add("O_HR_LB22", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.TextStyle = c_oRelativeItem.TextStyle;
                c_oItem.ToPane = 3;
                c_oItem.FromPane = 3;
                c_oLabel = c_oItem.Specific;
                c_oLabel.Caption = "Classification";
                //Employee Costs Label
                c_oRelativeItem = c_oForm.Items.Item("O_HR_LB22");
                c_oItem = c_oForm.Items.Item("97");
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3; //+ 15;
                c_oItem.FromPane = 3;
                c_oItem.ToPane = 3;
                //Term Reason Label
                c_oRelativeItem = c_oForm.Items.Item("97");
                c_oItem = c_oForm.Items.Item("90");
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;
                c_oItem.FromPane = 3;
                c_oItem.ToPane = 3;
                //Term Date Label
                c_oRelativeItem = c_oForm.Items.Item("90");
                c_oItem = c_oForm.Items.Item("91");
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;
                c_oItem.FromPane = 3;
                c_oItem.ToPane = 3;
                //Last Day Worked Label
                c_oRelativeItem = c_oForm.Items.Item("91");
                c_oItem = c_oForm.Items.Add("O_HR_LB40", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.TextStyle = c_oRelativeItem.TextStyle;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;//15;
                c_oItem.ToPane = 3;
                c_oItem.FromPane = 3;
                c_oLabel = c_oItem.Specific;
                c_oLabel.Caption = "Last Day Worked";
                //Key Return Date Label
                c_oRelativeItem = c_oForm.Items.Item("O_HR_LB40");
                c_oItem = c_oForm.Items.Add("O_HR_LB41", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.TextStyle = c_oRelativeItem.TextStyle;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;//15;
                c_oItem.ToPane = 3;
                c_oItem.FromPane = 3;
                c_oLabel = c_oItem.Specific;
                c_oLabel.Caption = "Key Return Date";
                //Exit Int Date Label
                c_oRelativeItem = c_oForm.Items.Item("O_HR_LB41");
                c_oItem = c_oForm.Items.Add("O_HR_LB42", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.TextStyle = c_oRelativeItem.TextStyle;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;//15;
                c_oItem.ToPane = 3;
                c_oItem.FromPane = 3;
                c_oLabel = c_oItem.Specific;
                c_oLabel.Caption = "Exit Interview Date";
                //Eligible for Rehire Label
                c_oRelativeItem = c_oForm.Items.Item("O_HR_LB42");
                c_oItem = c_oForm.Items.Add("O_HR_LB43", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.TextStyle = c_oRelativeItem.TextStyle;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;//15;
                c_oItem.ToPane = 3;
                c_oItem.FromPane = 3;
                c_oLabel = c_oItem.Specific;
                c_oLabel.Caption = "Eligible for Rehire";
                //Attach Label
                c_oRelativeItem = c_oForm.Items.Item("O_HR_LB43");
                c_oItem = c_oForm.Items.Add("O_HR_LB44", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.TextStyle = c_oRelativeItem.TextStyle;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;//20;
                c_oItem.ToPane = 3;
                c_oItem.FromPane = 3;
                c_oLabel = c_oItem.Specific;
                c_oLabel.Caption = "Attachments";
                #endregion
    Sorry, I don't know how to format this on SAP's Forums.

  • Employee Master Data  -  Bank Details

    Hi All,
    Under the Employee masterdata I like to add the bank account number for that employee, for this i can enter the account number directly.  And I have to select the Bank name from the drop down list.  I already defined the banks but when i click the drop down list i cannot see any bank names.  what could be the reason?
    Thanks
    SV Reddy

    Hello Reddy,
    Please read this thread..seems relevant to your question...Employee Master Data
    Suda

  • Time dependent employee master data reading !in sap-bw

    Hi,
    Here iam using one routine to read employee master data.
    as employee is a time dependent characteristic,we want employee monthly details from the period of joining to till now with all his status.(these status characteristics are attributes of 0employee master table).
    how to code for this requirement.
    regards,
    swami.

    Hi,
    Why do you want to delete ?
    No need to delete any Master Data
    If you want to really delete ,you can do one thing
    Right click on Master data Info Object 0EMPLOYEE
    select Delete master data
    And reload Master data for employee with full load
    if delta Initilize delta with data transfer
    Regards
    Hari

  • Time dependent employee master data reading !

    Hi,
    Here iam using one routine to read employee master data.
    as employee is a time dependent characteristic,we want employee monthly details from the period of joining to till now with all his status.(these status characteristics are attributes of 0employee master table).
    how to code for this requirement.
    regards,
    swami.

    Found it...
    http://help.sap.com/SAPHELP_ERP2004/helpdata/EN/49/7e960481916448b20134d471d36a6b/content.htm
    Regards
    Juan

  • Employee master data without HR module

    Hi All,
    I need ur Help.
    We are implementing ECC 6.0 to our client; Client is not using HR Module. But I have to maintain employee master data.
    Kindly help me how can we create employee master data without using HR Module?
    My clients' sales hierarchy is like below,
    -In India they are having 4 zones,
    1) East, 2) West, 3) North, 4) South
    -Each zone has a sales manager, he report to 'Sales Head'.
    -Each zone is further divided in to sub zones
    -Each zone has an ASM with sales officers, Sales officer report to ASM,
    Sales head ->SM->ASM->SO
    So i have to maintain this hierarchy without using HR,
    Kindly help me on this.
    Thanks and regards
    Sridhar

    Hi,
    To Create Sales employee master data in SAP use the T. Code: VPE1/PAL1.
    You have to Maintain Parner Determination in SPRO:
    SPRO --> IMG --> SD --> Basic Functions --> PArtner Determination -->Set up Partner Determination
    -->Set Up Partner Determination for Customer.
    Now, From Left-hand side tree, click on:
    Partner determination procedure assignment.
    Here maintain these partners to your customer.
    Account groups - Function Assignment
    Here, Link all Customer Acct Grps to PE/ VE
    Now check in XD03 in partners tab.
    Check Report: MCTI (Sales Employee-wise Booking/ Billing).
    Regards,
    Krishna.

  • HeHelp! I just synced my husbands iphone and it copied all of my data onto his phone...How do I put it back the way it was before I synced it???

    Help!!!  I just synced my husbands iphone and it copied all of my data onto his iphone, such as Apps and my Phone numbers.  How do I reset it to back where it was before I synced it????
    Thanks,
    Jerri

    You have to Restore from Backup.

  • Pane level is not working for created button in Employee Master Data

    Hai,
    I have created a button in Administration tab of Employee Master Data. I set the Pane level 3 for that button. Even though, when the Employee Master Data is opened, that button appears. ie., When Employee Master Data menu is clicked, Employee master data is opened in find mode and by default Address tab is active.But my button is visible here itself. I want that button visible only in Administration tab.
    How to resolve this.
    Thanks in advance.

    Hai,
    Thanks for answering.
    Actually coding  is as follows:
      oNewItem = oForm.Items.Add("XXX", SAPbouiCOM.BoFormItemTypes.it_BUTTON)
                            oItem = oForm.Items.Item("61")
                            oNewItem.Top = oItem.Top
                            oNewItem.Height = oItem.Height
                            oNewItem.Width = oItem.Width
                            oNewItem.Left = oItem.Left
                            oNewItem.FromPane = 3
                            oNewItem.ToPane = 3
                            oNewItem.Visible = True
                            Butt1 = oForm.Items.Item("XXX").Specific
                            Butt1.Caption = "Click"
    I got solution by commenting the line  "oNewItem.Visible = True"
    Thanks once again. But I don't know how it works.
    Edited by: ParvathaSolai on Jun 7, 2011 2:11 PM

  • Integrating SuccessFactors PMS solution With SAP HCM without saving any employee master data in SF

    Hi Friends,
    We’re implementing SuccessFactors’s Performance Management Solution only at one of the client location in Saudi Arabia and trying to integrate with the On-Premise SAP HCM and Push the employee data to SF.
    However, due to security concerns customer doesn’t want to store any data on SucessFactors cloud solution to run the PMS cycle.
    During the purchase of license for SuccessFactors SAP has demonstrated client that, in SF a unique Id will be created for each employee, which will not be the actual UserID(PERNR)from SAP, and with this unique ID actual employee data will be tagged/linked  in SF which will fetch the data from SAP On-Premise system to run  the PMS cycle.  Once the user logins in SF, based on the unique ID data will fetch from SAP On-Premise system to SF on a real time basis and when the user logged out from the SF system, data should be cleared/deleted and nothing will be saved or stored in SF with respect to employee Master Data.
    I understand SAP has provided the standard add-on for the Employee Data Scenario between SuccessFactors and SAP HCM, which could have been leveraged here for integration using PI, however with the above limitation this solution is absolutely out of scope.
      Please advice, is there any solution where with PI if we can achieve the above requirement of client.
    Thanks,
    Farhan

    Hi Friends,
    We’re implementing SuccessFactors’s Performance Management Solution only at one of the client location in Saudi Arabia and trying to integrate with the On-Premise SAP HCM and Push the employee data to SF.
    However, due to security concerns customer doesn’t want to store any data on SucessFactors cloud solution to run the PMS cycle.
    During the purchase of license for SuccessFactors SAP has demonstrated client that, in SF a unique Id will be created for each employee, which will not be the actual UserID(PERNR)from SAP, and with this unique ID actual employee data will be tagged/linked  in SF which will fetch the data from SAP On-Premise system to run  the PMS cycle.  Once the user logins in SF, based on the unique ID data will fetch from SAP On-Premise system to SF on a real time basis and when the user logged out from the SF system, data should be cleared/deleted and nothing will be saved or stored in SF with respect to employee Master Data.
    I understand SAP has provided the standard add-on for the Employee Data Scenario between SuccessFactors and SAP HCM, which could have been leveraged here for integration using PI, however with the above limitation this solution is absolutely out of scope.
      Please advice, is there any solution where with PI if we can achieve the above requirement of client.
    Thanks,
    Farhan

Maybe you are looking for