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

Similar Messages

  • 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

  • Separate TCode for Mass Change of documents (For authorization purpose)

    Hi
    We have internal audit function where internal audit chief will remove the payment block of multiple vendor invoices through FBL1N --> Environment --> Mass Change.
    Now problem is that authorization for FBL1N is given to 6 more employees (related to AP Accounting). Hence all these employees can do the mass change. I want to restrict this mass change authorization only to one person i.e. internal audit chief.
    Please tell me how to bring this restriction.

    Hi:
          You should contact your basis guy to do so...In tab authorization first you will have to find this object he system will display it , there you can assign 03 in place of *. 
    Personally i will recommend you should go for creating transaction variant using SHD0 which is an easy way to do so. Please check it will solve your issue. I just did both in test sever both of them are working perfect for me. Mass button is disabled when you set 03 for F_BKPF_KOA. SHD0 meets the subject topic of your post.
    Regards

  • Original System for transformations and DataSources

    Dear All,
    I have imported all DataSources and transformations from DEV box into QAS box. Transports ended without errors and they are working fine.
    I have the following questions, when check the Object Directory Entry (RSA1->Extras-> Object directory entry) for transformations and DataSources the Original System is QAS.
    Should not the original system be DEV?
    Transformations technical names in QAS are not the same as in DEV. Should not they have identical technical names?
    Details:
    BI70 SAP NetWeaver 2004s
    Support Packge 10
    Thanks,
    Carlos Weffer

    Transfornations' technical names change is normal.
    Also, when you see the object directory, the sysytem will eb Qa only as you would have converted the source system while transporting.
    Ravi Thothadri

  • 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 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

  • Mass change of Pgrp for open PO's

    Hi all,
    SRM 5.0 SP12,ECS
    We need to mass change the purchasing group for all open PO's in our system...Is that possible in SRM?
    Is there any std report which can do that??
    Thanks.

    Thanks Alex.
    Let me frame my question in another way...if there is no std report to change the purchasing group in all open PO's to a particular Purchasing group...then do I need to change the Purchasing group for each and every PO manually thoruigh CHANGE Mode in PROCESS PO transction?
    Experts,
    Any idea if SRM 7.0 has other ways of doing this??
    Thanks.

  • F110 - Mass change house bank for one time vendor

    Hello,
    Is it possible to make mass changes for payment program for one-time vendors? I would like to change bank account from where do I want to pay something to one-time vendor. As far as I know, it isn't possible to change it that way, it is possible only one per one.
    Does anyone have Idea how to resolve this issue?
    Thank you in advance!

    I can do it but one per one in payment proposal. I can't do it mass. The issue is that I have huge number of one time vendor payments per day and some of them should be paid in one house bank and some of them in some other house bank.
    I tried to change it with FBL1N but I couldn't do it.

  • Mass change with Reason for Rejection.

    Dear Gurus,
    Pl tell me the process to close all the open orders at one go. I have tried with the t.code MASS, but I was unable to do that.
    Pl give the step by step process.
    Regds,
    Sreehari

    Hari,
    MASS transaction is useful, If you know what fields to change  and in what documents/customers/vendors/.
    In your case what fields is pretty clear (VBAP-ABGRU  or MASSVBAP-ABGRU )
    But what documents is not clear.
    Points to consider.
         You can the documents that are open by just writing some query or even you can get it from SE16 using VBAP table
            and you can use these document numbers and enter in the MASS T.Code.
    It looks simple but the main hurdle is not all of the items in these orders are open, right...so you can't enter the reason for rejection in an item which was already delivered, or scheduled to deliver.
    So  Unless you know that all the items of an order are open, its not feasible to use MASS T.code.
             So my suggestion is to write an ABAP program that check whether the item in an order is open or not and then change the reason for rejection using BDC code.
                    Thats my suggestion. I hope you understood the reason for going to an ABAP program.
    Regards,
    Ajai.
    Reward points if helpful.

  • CMS(Change Mgmt System) for Portal

    Hello All,
    Can i use my CMS (Change Management System) with the Portal also to keep track of the Transports between Portals. Any guide or help link would be appreciated
    Regards
    Vaib

    Yes Eric, i'm looking for implementing the CMS so that we can do the automatic transport and maintain the version also.
    SO the question is can we use the CMS with the Portal.
    Regards
    Vaib

  • How to Mass change cost centers for assets

    Dear All,
    I have change the cost centers for about 1500 assets. I am not sure if there is an easy way to do it. Is there any way to get this list in excel and upload?
    I am using ECC 6.0 (I think CATS could not be used.. but I might be wrong). Thanks in adv for your help.
    SD

    Hi
    I hope the above given suggestions will not fullfill your requirement,
    Do follow the below steps for carrying out mass change of cost centers in asset master data.
    Enter t.code-AR01 - Generate
    Enter your Co.code and the assets numbers for which the cost centers have to be changed and execute.
    In the next screen select Create worklist (CntrlShiftF8)
    Give the worlist a Name and select-Change asset w/o dialog (bulk change) and press enter,from the next pop up select create Substitution,where you will be taken to creation of Substitution rule.
    Write a Substitution as per requirement and assisn the same to your company code.
    Where  you will be prompted with a message "Work queue XXXXXXXX added".
    Now enter into AR31 - Edit and release the woklist and see that your mass change of cost centers is carried out.
    hope this might help you in doing mass change of cost centers in asset master record.
    Good Luck
    Hari

  • Change Business System for Java Proxy Client

    I have created Web AS Java business system for Java proxy.
    Is it possbile to send message from client Java Proxy as another business system (Third party)?
    For example to specify this system
    MessageSpecifier messageSpecifier = proxy.$messageSpecifier();
    messageSpecifier.setSenderService("MY_BUSINESS_SYSTEM");
    proxy.$messageSpecifier(messageSpecifier);

    Yes, it is.
    That's the way to do it.
    Stefan

  • How to change original system SID to objects by batch?

    Hi, experts
    I did system copy and so I want to chage orignal system SID to new system SID.
    I checked it is possible to modify in SE03 or using function module 'TRINT_TADIR_MODIFY'.
    But problem is objects are alot.
    How can I update them easily?
    Thanks

    Did you perform the post processing in SE06?
    Changing the SID can be done in table TADIR, but that won't be supported....
    Kind regards,
    Mark

  • Change original language for table

    Hi,
    I created a table and some reason the Orginal language from the Attribute tab is DE. How can I changed this to EN? I looked at all the menu selections and nothing saids about it. I deleted the table and recreated using the same name but it still taking on the DE language.
    Thanks
    Ellen

    Hello,
    Login in EN language and try to change the text of the table. The system will ask two options
    1 . Maintain in Original Language
    2. Change Orginal Language
    Click the option Change Orginal Language and change to language of ur desire.
    Vasanth

  • Mass Change of Sets for Report Painter/Writer Reports

    Hi,
    We have upgraded our system from 4.6c to ECC 6.0. We are using more
    than 40 Report Painter/Writer reports which in turn are using Sets.
    However, these sets are containing reference to a Table which we want
    to change for all the set enmasse. e.g. If currently the sets are using
    Table Reference "ABC", we want to change it to "XYZ" because the
    table "ABC" is not at all existing in our new system ECC 6.0.
    Even we are unable to change the sets through T.Code GS02 as the table
    itself is not existing. And as the table is not existing, the Reports
    are giving hard errors saying that the sets do not exist.
    Kindly request you to guide us in this regard.
    Thanks in advance,
    Shalin Shah

    Looks like you have to create new sets and assign them in the report replacing the old ones.

Maybe you are looking for