Change of origin system

Hi Gurus.
We have a system which is migrated from another R/3 system. Data is also copied over from there.
So the owner of those PERNR and applicants as well as Org unit objects is the old system.
Our ALE check (in table T77S0) is active. So the users are not able to maintain anything as it keeps giving message that object is not original in this system.
I know there is a report PFAL, and RHALEORGMOVE (maintain HRMDORGIN in expert mode). But in this report, the receiver keeps giving me error even though I have maintained the distribution model.
How can I use these reports (or anything else) to change the owner unit of all objects in HR to the new system?
Please advice.
Thanks in adv.

Hi,
In PA30, before creating IT15, Click period radio to "Today" & then create IT15. The Date of Origin field will default to today's date i.e. system date.
If you don't want to do like this, then you have to go for an user exit (Enhancement PBAS0001).
Thanks,
Sarika.

Similar Messages

  • Not able to change the original system of the object

    Hello
    BW infosource was created in the system Q01 (test) and transported back to D01 (dev).
    I would like to change original system from Q01 to D01 to enable object modification.
    I am not able to change the original system of the object in the tran se03 as  system is disabled.
    Original System          Q01   (grey)
    Any solution for this ?
    thanks

    hi,
    before transporting maintain the settings in the Dev system as follows.
    Open tcode RSA1 in dev system, from Menu goto -- tools -- Conversion of Logical system Names.
    In this maintain the
    Original source system                                   Target source system
    Technical name of R/3 client of test              Technical name of R/3 client of dev system
    This setting has to be maintained while transporting the changes to next system, this ensures that the objects are mapped to the correct source system name on importing and are replicated properly from them.
    regards,
    Arvind.

  • How to change to original system of an object

    We have moved some sources from one system to another and now the
    original system in the customers objects is obviously the old system.
    How can I change the original system in these objects? Can anyone tell me
    in which tables is this info kept and if there are any standard reports to do this?
    Thanks
    Martin

    Thanks for your answer. No, we did not make a copy, but we have included
    all objects in transports, which we imported into the new system.
    SE06 sets general system setting. We need to change the information for single objects. Only those customer objects which carry the old system as original system need to be set to the new system. Not the SAP-Objects, obviously. I am talking about Z-Reports, subtypes of business objects, Z-Tables etc.
    Bye bye
    Martin

  • How to change the original system of a CR?

    Dear gurus,
    we have imported some workbench and customizing CRs into a system B mannually from system A,
    there is no transport link between A and B.
    But when we want to import those CRs into system C , which has transportation link with B, we can not found those CRs, i guess because those CRs is release on A ,not B.
    Could you please help me how to import those CRs into system C, just like other 'normal' CRs?
    do i need to modify the original system of the CRs? if so , could you pls tell me how to do that?
    thanks and best regards.
    Jun

    Hi Nicole,
    there are many system objects inside our CR, DDIC, FM ...
    so we can not  change them one by one.
    what we are trying to do is to port a custom solution from one system to another,there is no link between them , and in the target system, those CRs can be transport to other systems normally using STMS.
    we are trying to include those crs into a new cr in the target system , but failed.
    could you please provide more informaiton on how to solve this?
    thanks and best regards.
    jun

  • Mass change original system for objects

    Is there a way to change the original systems for multiple objects at once?
    So instead of changing them one by one, can the original system for objects be changed for multiple objects at once?
    Kind regards,
    Ben

    I've checked with the Basis team, but they couldn't help me further.
    For the moment we'll leave the objects like they are and Overwrite the originals when transporting.
    Kind regards and thanks,
    Ben

  • Change Original System

    Hello,
    I know this can be done, but am having some trouble finding where...
    First off, a little background, my company has two systems, one for domestic and one for international. There was a great deal of development done for the international system that the domestic side now wants for themselves as well.
    I have transported all of those objects from the Development box of the international system to the Development box of the domestic system, but to complete the process, I now need to switch the original system on all of that development from the international development system to the domestic development system to avoid having to do a repair every time a change is required to this development in the domestic system.
    Does anyone know where this is done?
    Thank you.
    Nick Lyons

    I know that our company had to do this also.  But I was not involved in the project.  The only thing I could find was a program that changes the original system.
    Here is the code.
    REPORT YCHORIG .
    TABLES: SSCRFIELDS, TADIR.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN COMMENT 5(72) AAA.
    SELECTION-SCREEN COMMENT /5(72) BBB.
    SELECTION-SCREEN COMMENT /5(72) CCC.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN BEGIN OF BLOCK BLOCK WITH FRAME.
    SELECTION-SCREEN COMMENT /2(72) DDD.
    SELECTION-SCREEN COMMENT /2(72) EEE.
    SELECTION-SCREEN COMMENT /2(72) FFF.
    SELECTION-SCREEN COMMENT /2(72) GGG.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: A LIKE E071-PGMID.
    PARAMETERS: B LIKE E071-OBJECT.
    PARAMETERS: C LIKE E071-OBJ_NAME.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN SKIP 1.
    SELECTION-SCREEN COMMENT /1(72) HHH.
    SELECTION-SCREEN COMMENT /1(72) III.
    SELECTION-SCREEN SKIP 2.
    SELECTION-SCREEN PUSHBUTTON 3(30) MMM USER-COMMAND DISP.
    SELECTION-SCREEN PUSHBUTTON 36(8) JJJ USER-COMMAND PROC.
    SELECTION-SCREEN PUSHBUTTON 47(8) KKK USER-COMMAND EXIT.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN COMMENT /1(72) LLL.
    SELECTION-SCREEN END OF BLOCK BLOCK .
    INITIALIZATION.
      AAA = 'This program changes the specifyed object''s original system.'.
      BBB = 'The new SID will be the login SID.'.
      CCC = 'USE THIS PROGRAM WITH EXTREME CARE!!!'.
      DDD = 'Name of R/3 ABAP/4 Development Workbench object'.
      EEE = '|      Object type'.
      FFF = '|      |      Object name'.
      GGG = '|      |      |'.
      HHH = 'Example:'.
      III = 'R3TR PROG ZLOAD'.
      JJJ = 'PROCEED'.
      KKK = 'EXIT'.
      MMM = 'DISPLAY RECENT ORIGINAL SYSTEM'.
      LLL = ' '.
    AT SELECTION-SCREEN.
      IF SSCRFIELDS-UCOMM = 'EXIT'.
        SET SCREEN 0.LEAVE SCREEN.
      ELSEIF SSCRFIELDS-UCOMM = 'PROC'.
        CLEAR TADIR.
        SELECT SINGLE * FROM TADIR WHERE PGMID = A AND OBJECT = B AND
        OBJ_NAME = C.
        IF TADIR-PGMID IS INITIAL.
          LLL = 'THIS OBJECT DOES NOT EXIST'.
        ELSE.
          IF SY-SYSID <> TADIR-SRCSYSTEM.
            TADIR-SRCSYSTEM = SY-SYSID.
            MODIFY TADIR.
            COMMIT WORK.
            LLL = 'THE ORIGINAL SYSTEM CHANGED TO:'.
            LLL+31(3) = SY-SYSID.
          ELSE.
       LLL = 'NO CHANGE: THE ORIGINAL SYSTEM AND LOGIN SYSTEM ARE THE SAME'.
          ENDIF.
        ENDIF.
      ELSEIF SSCRFIELDS-UCOMM = 'DISP'.
        CLEAR TADIR.
        SELECT SINGLE * FROM TADIR WHERE PGMID = A AND OBJECT = B AND
        OBJ_NAME = C.
        IF TADIR-PGMID IS INITIAL.
          LLL = 'THIS OBJECT DOES NOT EXIST'.
        ELSE.
          LLL = 'THE RECENT ORIGINAL SYSTEM IS: '.
          LLL+31(3) = TADIR-SRCSYSTEM.
        ENDIF.
      ENDIF.
    Regards,
    Rich Heilman

  • Original System of a specific transaction

    Hi guys,
    I would like to change the original system of a transaction because I want to insert it in a request and the original system is not still present. So the system print that "Repaired object cannot be inserted in [Request] . How can I do so ?
    Thanks a lot,
    --Yohann

    I found !
    To do so you should run the SE03 transaction. there, choose "Change Object Directory Entries ", enter TRAN into an empty field and the name of the transaction into the object name field. Mark the checkbox and run it.
    Finaly, you just have to select the transaction in the tree and change the Original System field.
    Hope it will be helpfull, regards,
    --Yohann

  • Original system in object directory entr changable ?

    hi,
    how is it possible to change the original system of about 950 objects ?
    In SE01, when jumping to 'Transport Org. tools', i can select the objects, then i can mark them and i have to change EVERY SINGLE one manually ?
    how to do it in ONE step for all objects ?
    reg, Martin

    Hi
    the original system should be setted in TRDIR table so you can update it:
    TABLES TADIR.
    SELECT-OPTIONS: SO_PROG FOR TADIR-OBJ_NAME.
    PARAMETERS: P_SYST1 LIKE TADIR-SRCSYSTEM OBLIGATORY,
                             P_SYST2 LIKE TADIR-SRCSYSTEM OBLIGATORY.
    SELECT * FROM TADIR WHERE OBJ_NAME   IN SO_PROG
                                              AND SRCSYSTEM = P_SYST1
                                              AND DEVCLASS   LIKE 'Z%'.
      TADIR-SRCSYSTEM = P_SYST2.
      MODIFY TADIR.
    ENDSELECT.
    I've done it many times, and it worked always fine
    Max

  • Generate Change Pointers in non Original System

    I have developped in the inbound badis a trigger to generate the change pointers in a non-original system.
    Do you know if there is a standard way to generate change pointers in a non-original system?
    Landscape is as follow:
    Original System => Intermediate System => Final System
    I would like to generate change pointers in the Intermediate System to transfer master data into the Final System...

    Hi,
      Thanks for your reply.
      the configuration for change pointers is already done, the problem is that if changes are send from the original system, it doesn't generate a change pointer in the intermediate system.
      In the end, the intermediate system doesn't send the information to the final system as there are no change pointers generated by the changes received from the original system.
      What I'm doing at the moment is to generate those change pointers in the inbound badi in the intermadiate system, I'm wondering if there is not a standard solution for this kind of implementation.
    Cheers,
    Lucien.

  • Hierarchy R3PRODHIER may only be changed in the original system

    Hi Experts
    I have created a new Product Hierarchy in R/3 when i try to replicated them into CRM by using initial replication of DNL_CUST_PROD1.system throwing an error saying :  Hierarchy R3PRODHIER may only be changed in the original system R3LNT200. ....in the SMQ2 before doing initial replication of  DNL_CUST_PROD1 status was green.
    And again i try to replicated the DNL_CUST_PROD1 by  reguest load which has run successfully and 3 blocks are generated then  i run the initial replication of Material but status of initial replication status in waiting. which is not run i mean to say.
    then i again  created a Request load for Object Material and which is run success fully
    but my problem is i did not see the  new hierarchy and products too in Table COMM_PRODUCT
    .and when i see status of the in DNL_CUST_PROD1in R3am1. which is in ABORT .
    Hence i request you could you please help me inorder to make green status of the DNL_CUST_PROD1 in r3am1 so that i can able to nun material successfully
    i would appreciate you help
    thanking you
    Regards
    Swathi

    Hi Swathi,
      I'm assuming this development is copied from your production.
    For example: Go to COMM_PRODUCT table and check the log sys field. Now it will show the Production Logical System. So you need to convert this value.
      After the client copy, basis needs to execute BDLS transaction.  This transaction is used to convert the logical systems in all the Database Tables.
         Perform this conversion only for Client Dependent Tables.
         Execute below conversion in CRM Development Box
                       CRMOLDLOGICAL SYSTEM to CRMNEWLOGICALSYSTEM
                       ECCOLDLOGICALSYSTEM to ECCNEWLOGICALSYSTEM
          In ECC Development Box
                       CRMOLDLOGICAL SYSTEM to CRMNEWLOGICALSYSTEM
                       ECCOLDLOGICALSYSTEM to ECCNEWLOGICALSYSTEM
    Regards,
    Bhanu

  • Mass change of the Original System

    Hello Experts!!!
    We need to do a massive change of the original system to avoid repair tasks. I know that thru SE03 or SM30->TADIR is possible, but we need to do it to all objects in the system.... I think It might exist a standar tool for that... what do you think???
    Thanks a lot!!!!
    Frinee

    Also interesting: transport of copies / relocation of objects
    http://help.sap.com/saphelp_nw70/helpdata/EN/57/38e1a94eb711d182bf0000e829fbfe/frameset.htm
    Thomas

  • Changing Original System and Transport Target System for Objects

    Hi Gurus,
             I need to do mass transport of all the Infoobjects to newly defined system. Since these objects have different Original system. Its giving me error. Again, for other objects, Transport Target system is QAS, But we want to change it to NBW (A new system to which we want to send transport) . I am able to change package of Infoobjects. Is there mechanism to change Original System and Transport Target for System? Please let me know ASAP.
    Regards,
    Harpal
    Message was edited by:
            Harpalsinh Gohil

    If you simply edit your original post, it will go to the top of the list. There's no need to post duplicates.
    Subjects with a subject of "Urgent" will be filtered out by a lot of responders.
    Why not close this thread and bump the other one?
    Rob

  • Set ZATTR_PROD may only be changed in the original system

    Please,
    Iu2019ve enhancement the PRODUCT_CUSTOMER2 BADI to change product attribute type when Iu2019m replicating products from ECC to CRM.
    When I try to replicate the material from ECC to CRM thereu2019s the follow error:
    "Set ZATTR_PROD may only be changed in the original system"
    How can I solve it?
    Thanks in advance
    Edited by: Ronaldo Alvarenga on Oct 25, 2010 11:17 PM

    Hello,
    Maintain an entry for Z* settype in below path:
    SPRO>IMG>CRM>Master Data>Products>Enhancements>Allow Changes to Product Data.
    Hope this helps!
    Best Regards,
    Shanthala Kudva.

  • Change ownership from "system" on mounted volume?

    I have an external firewire drive with 3 partitions all of which are mounted on an iMac, and which until recently all had the same ownership and permission settings under my admin account. One of the volumes (the one storing all the users' iTunes songs) somehow changed ownership to "system" and group to "wheel". I can no longer access the volume nor can the other user accounts on the iMac, although it shows up as a mounted volume when viewed in Disk Utility. "Repair permissions" is unavailable for this volume in Disk Utility. The other two volumes are unaffected and retain the original ownership settings. I'd like to reset ownership from "system" to my admin account, but do not know how to do so as apparently it needs to be done through unix commands using Terminal. What do I need to do?
    iMac   Mac OS X (10.4.8)  

    "...under Ownership & Permissions, click on the lock, enter your password, and change the Owner to you, with R&W access and the Group to admin, also w/R&W access, and click o Apply to enclosed items. Click the lock and close the Info window. No need to use Unix commands in the Terminal app."
    I first tried that approach but unfortunately the procedure does not work. Under Ownership & Permissions it says "You have No Access". I can click on the lock and select my name under Details: Owner, but once I click to relock, Owner just reverts back to "system".

  • I have a iMac 21,5" Intel mid 2011 and I need to know if is possible I change the original 500Gb HD for a 512Gb SSD? If yes, where I find a tutorial about this? Thanks a lot and best regards all.

    Hi people,
    I'm typing from Brasil, sorry my English.
    I have a iMac 21,5" Intel mid 2011 and I need to know if is possible I change the original 500Gb HD for a 512Gb SSD?
    I intend to keep the original DVD driver and install the SSD in the same HD place.
    If yes, where I find a tutorial about this?
    And I will like to know if the 512GB Solid-State Drive Kit for Mac Pro is compatible with iMac.
    http://store.apple.com/us/product/MC731ZM/A/512gb-solid-state-drive-kit-for-mac- pro?fnode=5f
    What brand and model of SSD do you recommend?
    Thanks a lot for now and best regards all.
    Carlos Sgrillo
    Porto Alegre, RS, Brasil

    Tukaine
    Sep 23, 2012 10:59 PM
    Since the late 2009 iMacs came out, replacing the hard drive has caused the internal Hard Drive Fan to start running at around 6000RPM.
    This is due to Apple replacing the external Hard Drive temperature sensor with a proprietary firmware and using the drives internal sensor.
    Replacement drives do not contain the firmware to deliver temperature data on the temperature sensor cable.
    When the iMac does not receive a good signal from the hard drive it puts the fan at full speed to protect the drive.
    If you replace your drive, your iMac will initially seem fine, but soon the fan will begin to speed up to full speed. Resetting the SMC (System Management Controller) will have a temporary effect, but again the fan will speed up.
    Fixes people have used in the past included:
    Using smcFanControl and the terminal to set a MAX speed for the fan and writing scripts to start this after every sleep/restart.
    Shorting the temperature sensor cable (Not a possibility on 2011 iMacs) this tricks the iMac into thinking the drives temperature is very low, hence slow fan speed.
    Both these fixes are less then perfect and leave the drive in a dangerous situation with no protection from overheating.
    Another option people try is other Fan Control software. These programs will not work for this particular issue as they often only control the base speed, and if they do control the fans actual speed they rely on the temperature reported by the sensor which is now incorrect.
    HDD Fan Control
    HDD Fan Control works to fix this issue by reading the drives internal temperature using the S.M.A.R.T protocol and set the fans actual speed to a value good to protect the drive.
    It runs at startup and continually to always control the fan correctly, prevent the loud fan noise and protect the drive from overheating
    Instead of HDDFan Control, get the free SSDFan Control
    http://exirion.net/ssdfanctrl/

Maybe you are looking for

  • Baseline Date issue via FB60

    Hi SAP experts, Can anybody help with the issue below: FB60 (vendor invoice) was entered. Invoice Date entered manually by accident with date 01/04/2020 Baseline date is used automatically as Invoice Date 01/04/2020 Date was corrected manually in tab

  • Acrobat Reader 9

    Hi, Could someone please clarify and explain if it possible how to achieve the following:- I am lead to believe that with just the installation of Acrobat Reader 9 it is possible to load a PDF form, populate the fields on that form and save the PDF p

  • Selecting Tray1 or tray2 for printing

    I have a HP Officejet Pro 8500A with the additional tray connected underneath the main printer. I would like to keep 1 tray loaded with A4 paper and the other with photo paper so I can remotely print on either A4 or photo paper (from my iPhone or Mac

  • Trouble with short still image durations

    I know this is probably stupid and something simple I'm missing ... I have a series of digital stills that I can import to the timeline etc etc but I cannot find anyway to make the duration of each less than one second. Even if I enter less, it defau

  • Adobe website issues with Chrom

    Hi first time here on the Adobe forums. So just sayin' this website doesn't work using Chrome. Has anyone else found this? I have to use IE tab extension to follow any of the links, the only way to browse under full Chrome is to right click and open