Standard report which importe personnel number from  one server to other

Dear Hcm Gurus.
Is any standard report exist in SAP Which imports Personnel number from one server to other server which are maintained in Source server ,imported all contents maintained in source server.
e.g  An employee is hired in  u201C Server Au201D and personnel number  is generated internally while we want to imports same employee data with same personnel number in Server u201CBu201D
IS it possible ? if is kindly do help and clarify any standard report which import complete data from one server   to other server with all its infotypes.
barket

Hi,
a standard way should be setting up an ALE scenario between the two systems to transfer employee data and keep them updated. This needs a bit more set up than a single report to be run but it is a common way to create HR landscapes where different local HR systems consolidate data to a centralized system.
The other options are valid, too. But I know them more for transfering data for test or validation reasons.
If you could add some more information to the business background of your requirement we could add give a better suggestion which solution to head for.
Kind Regards
Roman

Similar Messages

  • Import local mailboxes from one account to other in the some computer

    I need to import local mailboxes from one account to other in the some computer. I have tried copy/paste from one user/library to other, but mail went crazy with permission and even if I changed them manually now Mail can't save the passwords of the mailboxes, so I need enter each time Mail check the mail from the server. Any idea?

    You need to let Mail do the Import, and not do this manually in the Finder.  However, if you force a reindexing things may get back to normal.  This assumes you are not talking about mailboxes in account folder, but rather On My Mailboxes?
    To reindex all mailboxes force a reindexing by deleting the Envelope Index. With IMAP or Exchange account, forcing reindexing requires removing the account folder. See:
    http://docs.info.apple.com/article.html?path=Mail/4.0/en/14019.html
    Ask any questions needed to get comfortable with doing this.
    Ernie
    Message was edited by: Ernie Stamper

  • Business Rules Migration from one server to other server

    Hi All,
    Can some body help on business rules migration from one server to other server? and also wt is the difference there in Export and import BR's and Administration repository to migrate.........i fail to understand if we export and import br's and need to change in xml target server and after import whether all users can able to see this imported BR's ?
    then wt is the use of Administration option under Business Rules-->right click-->repository...connect--->need to connect oracle info....wt is this process? can some body help on this please........
    thanks,
    huser

    Hi,
    The methods are pretty much the same in what they do.
    When you export rules it creates an xml file based on the selection you have picked, you can just log into EAS and do this you don't have knowledge about the repository, it is also useful for migrating across versions. You also have the option of changing the xml file before importing it into your target.
    When you migrate the respository you have to physically connect to the database repository and have knowledge of the connection details, it is probably aimed directly at a system admin.
    The options in both methods are pretty much the same, you can choose what you want to export or migrate.
    You hit issues when you export/migrate for instance the location names change and need to be updated, you can update the xml file to change the locations though if you choose the migrate option you won't have that ability.
    The next issue is the user/group accounts which is the biggest flaw, if the users/groups exist on the target and have the exact same SID then they will migrate otherwise they will usually get dropped.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Hi,how can i transport objects from one server to other like (Dev To Qty)

    Hi Sir/madam,
       Can u explain how can i transport objects from one server to other like (Development To Quality To Production).
    Regards,
    Vishali.

    Hi Vishali,
    Step 1: Collect all Transports(with Packages) in Transports Tab(RSA1)- CTO
    Step 2: Release the subrequests first and then the main request by pressing Truck button
    Step 3: STMS or Customized transactions
    Object Collection In Transports:
    The respective Transports should have the following objects:
    1. Base Objects -
    a. Info Area
    b. Info object catalogs
    c. Info Objects
    2. Info Providers u2013
    a. Info Cubes
    b. Multi Providers
    c. Info Sets
    d. Data Store Objects
    e. Info Cube Aggregates
    3. Transfer Rules u2013
    a. Application Components
    b. Communication Structure
    c. Data Source replica
    d. Info Packages
    e. Transfer Rules
    f. Transformations
    g. Info Source Transaction data
    h. Transfer Structure
    i. Data sources (Active version)
    j. Routines & BW Formulas used in the Transfer routines
    k. Extract Structures
    l. (Note) If the transfer structures and related objects are being transferred without preceding
    Base Objects transport (e.g. while fixing an error) it is safer to transport the related Info
    Objects as well.
    4. Update Rules u2013
    a. Update rules
    b. Routines and formulas used in Update rules
    c. DTPs
    5. Process Chains u2013
    a. Process Chains
    b. Process Chain Starter
    c. Process Variants
    d. Event u2013 Administration Chains
    6. Report Objects u2013
    a. Reports
    b. Report Objects
    c. Web Templates
    Regards,
    Suman

  • How to Import/Export database tables from one server to other in oracle8i

    Hello friend,
    Please can any one tell me how to import/export groups of database tables from one server with oracle to another using VB.net. It would be nice if some one can provide some code of it.
    I am a software developer and I am in middle of a large project development, in which I need to export a large oracle database from one server to another efficiently.
    Its very urgent so please someone help me.

    At command prompt (source db)
    set ORACLE_SID=db_name
    exp system/password@db_name full=y buffer=104857600 file=(c:\file1.dmp, c:\file2.dmp....) log=c:\exp.log filesize=2000M
    Then ftp the export dump files (in binary) to the other server or copy to target server over the network.
    At command prompt (target db)
    set ORACLE_SID=db_name
    imp system/password@db_name full=y ignore=y buffer=104857600 file=(c:\file1.dmp, c:\file2.dmp....) log=c:\imp.log filesize=2000M
    If the path names of the datafiles are going to be different in the target server (as compared to the source), then precreate the tablespaces before import. Set buffer value accordingly.
    Message was edited by:
    FeNiCrC_Neil

  • Standard procedure to transfer Inventory Items from one Warehouse to other

    Dear All,
    Please let me know what is the standard procedure to be followed while transferring Inventory Items from one warehouse to other warehouse through SDK. Right now I am using sql statements to deduct and add the items to and from warehouse. Its not working properly.  Please let me if any business object is provided by SAP to achieve this functionality.
    Regards,
    Noor Hussain

    Hello Noor,
    You can use stocktransfer object:
    Private Sub PostStockTransfer()
            Dim oDoc As SAPbobsCOM.StockTransfer = oCompany.GetBusinessObject(BoObjectTypes.oStockTransfer)
            oDoc.DocDate = Date.Today()
            oDoc.FromWarehouse = "01"
            oDoc.Lines.ItemCode = "A0001"
            oDoc.Lines.WarehouseCode = "02"
            oDoc.Lines.Quantity = 10
            If oDoc.Add = 0 Then
                sbo_application.MessageBox("Stock transfer Issued")
            Else
                sbo_application.MessageBox(oCompany.GetLastErrorDescription)
            End If
        End Sub
    Regards
    János

  • Suggestion needed in export/import ODI topology from one machine to other

    Hi,
    I am trying to export all ODI topologies from one machine(A) to other machine(B).Can I export/import whole topology.While doing the same whether created repositories and existing topolgy in machine (B) would be replaced.I don't want to get the existing things in machine(B) to be replaced.Can anyone suggest on this?

    you can always select the Import Mode as 'INSERT' if you don't want anything to be overwritten. Yes, you can export/import the topology, logical topology, execution environment by using the options in the Topology tab(top right corner dropdown).

  • Testing while transporting from one server to other

    We need to complete testing of BW objects in one server which has copied from another server for the support pack upgrade. 
    Here are the basics we need tested:
    Spot check InfoSources/ODS Objects/Cubes/Update rules to ensure that all are active and the structures have not changed.
    Testing of  process chains.  Check to ensure any data loads that fail can be resolved.
    How should I carry on these testing ?
    I think if the objects are active in new server then they are fine and in that case no need to test the structures of the objects.
    Please help me whether I am right or wrong .
    Are there any other way of testing as the time line is short ?
    Please help me asap.

    Hi Rajib,
    You would basically test everything.
    1. RSRV check for all the objects.
    2. Check for some queries with different scenarios like RRI, etc.
    3. Dataload for your major Data targets.
    4. You can also do a version check for all the info-objects in RSD1.
    5. Likewise check the versions for all the BW objects like cube, ODS in RSD1.
    Bye
    Dinesh

  • What I should do If I move fact and dimension tables from one server to other server

    Hi
    I have question like
    what all changes need to be done  in EPM System if we move the Fact and Dimension tables to a different server.
               Reply me asap and thanks in advance

    I have fact and dimension tables in one server and i moved those stuff to another server.If I do that what happen to essbase and about totale EPM System.I want to know how to do this and what I can expect?
    Please reply

  • How can we move LDOM from one serve to other.

    Hi,
    i have an LDOM setup on a T6320 Blade with Solaris 10.
    The boot image of LDOM is under a ZPool image of 32 GB.
    I want to move this LDOM from T6320 to another T6340. but they don't have the shared disk or not connected to same SAN.
    Sun's document talks about moving the LDOM but what i understood is it is only applicable if the virtual disks are accessable from both the servers.
    Can anybody help me here ?
    Thanks,
    jerin

    Hi,
    You can try something like this :-
    SQL> CONNECT SYS/SYS123@SERVER AS SYSDBA
    Connected.
    SQL> CREATE USER TEST_1 IDENTIFIED BY TEST_1;
    User created.
    SQL> CREATE USER TEST_2 IDENTIFIED BY TEST_2;
    User created.
    SQL> GRANT CONNECT,RESOURCE,DBA TO TEST_1;
    Grant succeeded.
    SQL> GRANT CONNECT,RESOURCE,DBA TO TEST_2;
    Grant succeeded.
    SQL> CONNECT TEST_1/TEST_1@SERVER
    Connected.
    SQL> CREATE TABLE TEST_COPY ( TEST_COL NUMBER );
    Table created.
    SQL> INSERT INTO TEST_COPY VALUES ( 1 );
    1 row created.
    SQL> INSERT INTO TEST_COPY VALUES ( 2 );
    1 row created.
    SQL> COMMIT;
    Commit complete.
    SQL> GRANT ALL ON TEST_COPY TO TEST_2;
    Grant succeeded.
    SQL>  CONNECT TEST_2/TEST_2@SERVER
    Connected.
    SQL> CREATE TABLE TEST_COPY AS SELECT * FROM TEST_1.TEST_COPY;
    Table created.
    SQL>  SELECT * FROM TEST_COPY;
      TEST_COL
             1
             2Regards,
    Sandeep

  • How to move client from one server to other at remote location

    Dear All,
    We have two servers located in two different locations.Due to some network issues i am unable to do the remote client copy .
    Please suggest how do i take client 100 to other server which is at different location and on different platform.
    Source system is HP Unix Target system is on windows2003, database is oracle on both servers.
    Regards,
    Najeeb ..

    Dear Shark,
    Please check whether you have set archive logs.
    If you have set then please disable, it since it will increase size of /oracle/SID/oraarch.
    then you need to take achive backup. so all the above please ensure that no archive logs are generated.
    also check the size of PSAPUNDO and PSAPTEMP tablespace and if possible make its size large.
    Have you enabled Automated Undo managemant. if your database is oracle9 then you need to manually provide AUM or else it is automatic in higher oracle DB.
    Check the logs of Client copy using scc3.. all the best for all.
    Regards,
    Ganesh

  • How to transport wdj project code from one server to other server?

    Hi, experts,
    I development 100 wdj component and deployed them to development server(A_development_server).
    I have download sca file of my WDJ project from A_development_server.
    I have config the SLD and Track in the other development server(B_development_server).
    I don't know how to transport the project code from A_development_server to B_development_server for download the project code ?
    Do you give me some hint?
    Best regards,
    tao
    Edited by: wang tao on Mar 12, 2010 4:41 AM

    Hi Wang,
    You can directly deploy project from A_development_server to B_development_server. For that you need to Define Runtime details under RUNTIME tab in landscape configurator for B_development_server in CMS. To access CMS, go through http://host:port/devinf
    Automated Deployment into Multiple Production Systems
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/44/355093ba830a67e10000000a422035/frameset.htm
    Getting Started with the Development Infrastructure 
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/44/0d18d725301a78e10000000a1553f6/content.htm
    Hopt it helps
    Regards,
    Arun

  • Import of the application from one server to another

    Hi There,
    I have imported my application from one server to another.
    Now when I am trying to log in to the application using the previous credentials, it simply reloads the log in page and it doesn't give invalid user name and password error also.
    It just simply load the log in page once again.
    What should I do? Where am I going wrong?
    Please help!!
    Thanks in advance
    Pushpesh Pallav.

    Hi,
    If you need previous login credentials to another application as new system. please follow the steps. in Application Express 4.1.0.00.32<br>
    <font color=red>IN OLD System</font>
    Home>Application Builder>Application [101]>Export / Import>Manage Export Repositoryexport Workspace to new system. once done this task u will have exported workspace copy.
    <br>
    <font color=red>IN NEW System</font>
    http://hq-orapp-03:7777/pls/apex/f?p=4550:10 *need apex admin credentials*
    Home>Manage Workspaces>Import Workspace> step I
           "        "                        step II Existing Workspaces || you can see your old development workspace and usersthese steps to be done! then you can import application and login credential can use which is previous application user name/password.
    Please if its correct and make it flag in this thread.
    Thanx,
    Ram

  • How to compare the files from one server to another

    Hi !
    I want to compare the files present in one server to another server. I had to list out the files which is not present in the server and import those files to an excel file. There are lot of folders and lot of files present inside those folders. I want a java or jsp or javascript program code for this or any site which indicates how to do. What are the requirement for this program to implement like any tool or any other techniques. Please can u help me out.

    No ... The package mentioned in
    http://www.oracle-base.com/dba/miscellaneous/ftp.pks
    this works for across the server i.e. transfer the files from one server to other (it is basically ftp) ..
    So it is NOT correct that this code transfer the file between two location & with in server..

  • Move Web service from one server to another

    Hi
            i am calling a web service from R3 which i have moved from one server to another what i need to do in my web dynpro application as it will call the web service from new location?
    do i need to rebuild the whole application or need to change some settings here and there?
    NOTE: webservice and function module of the web service is not changed just moved from one server to another.
    THANKS
    Ninad

    Hi,
      Try with this code. Dynamically Server will get change.
    Create a HTTP Destination in visual administrator which stores the server name and port.
    String prefixURL = "http://";     
    // your Service Address...remove the first part from service url.
    String serviceURL = "/TestService/Config1?style=document";
    DestinationService dstService = (DestinationService) obj;          
    Destination destination = dstService.getDestination("HTTP","ApplicationServer");
    Properties destprop = destination.getDestinationProperties();
    HTTPDestination httpDestination = (HTTPDestination) destination;
    String serverName = httpDestination.getUrl();
    prefixURL = prefixURL + serverName;
    String testURL = prefixURL + serviceURL;
    Request<Obj> testReq = new Request<Obj>();
    testReq._setEndPoint(testURL);
    You need to import below files into your project.
    import com.sap.security.core.server.destinations.api.Destination;
    import com.sap.security.core.server.destinations.api.DestinationService;
    import com.sap.security.core.server.destinations.api.HTTPDestination;
    import java.net.HttpURLConnection;
    import java.util.Properties;

Maybe you are looking for

  • I can no longer print from Firefox

    I was in Yahoo mail. I was getting ready to print. The print dialog was open already. Then I got some kind of notice from Firefox that it needed to restart to install an update. No problem I thought, the updates have always had no problem. Since I al

  • Not allowing bluetooth connection to car hands free

    Hi I have a blackberry curve 8520 and a Bury hands free kit. Normally as soon as the car is switched on the Bury comes on and starts searching for the blackberry and finds it immediately over the bluetooth and connects without any trouble. Recently

  • Docking a sheet in Numbers on the iPad

    Hi, When viewing a sheet in Numbers on the iPad the sheet moves. I find this disturbing while entering data. Is there a way to dock it so that the sheet remains fixed below the tabs. Thanks, - R

  • Doubt on update

    I have 3 tables. Those are shops, salepoint and storagepoint. Salepoint and storagepoint both the tables contain doorNumber and village. Based on the salepoint’s doorNumber and village I have selected the record for update. The following is the query

  • About XI SLD

    Hi Experts, I'm new to XI.please answer the below question? i need your help to under stand. 1.I have systems a, b and c ( external system) ,which are sends the data to XI, Example: system a sends idoc system b sends idoc system  c send file   Here I