TWO Changes In Production System

Hi , there are two changes in Production system,
one is there is a report i have to do some modification in PROD,for this have to do in DEV,QA,PROD Respectively , here whether i have to use old request to new one , is this is the right practice or not,
second in  transfer rules there is a conversion routine , i have to do some modification , How can i do like once again DEV,QA,PROD
Hope u understand the problem
With Regards
MAHI

Hi,
Normally we dont have any authorization for changing the objects directly in production.
You need to make the required changes in Dev and then move to Quality and then to Production. Hence you need to create a new requrest for all the changes you made in Dev and move to Quality and then to Production.
Hope this helps.
Regards,
K.Manikandan.

Similar Messages

  • Code changes in Production system.

    Hi all,
    Due to the unavailability of the development and quality i want make code changes in production system.
    Please tell me is this possible and also i want know that does it effect or not?
    Regards,
    Ramprasd

    Hi,
    For editing in PRD system, u need to get authorization for editing. To get auth object, contact basis.
    But proper way to edit a code is modifying in DEV, then transport it to QAS & PRD.
    Regards,
    Prem

  • Logical System Change for Production System

    Hi experts
    We have new CRM and BI project.  Logical System name of our ERP production system is not in naming standart. So we want to change logical system name and run BDLS in production system.
    Is there any risk about this prosedure?
    Best Regards...

    Hi,
    It is not advisable to change the logical system in production client once its assigned.
    Regards,
    Nisit

  • Database change in production system

    Hi Experts
                I have created a ztable and transported to production system.
               Now i need to delete one column, or change the data element and domain, is it possible, will it create any problems.
            if data already exists for a particular field in production system, now can i change the data element and domain without losing the data.
               Pls help me on this, and give any notes about the database changes after transported to producion system.
    Regards
    Rajarm

    Hi..
    I tried this..
    If  u rename a field or changes occuring to a paricular field means..
    The corresponding field data will be deleted..
    Post me for furthur Queries regarding this.
    Regards
    Bala..

  • BCS - master data change in productive system?

    Hi group,
    We are about to go live with our BCS system, but of course someone got the great idea of changing the company code currency for one of the "non-SAP" companies in the group since the sytem was set up.
    When I enter the consolidatin workbench in our production system, everything is considered customizing, so no changes are allowed - even to master data. I''ve searched the "Object changeability" settings of the BW system but couldn't find any settings regarding BCS. I also checked settings in se06 and found a namespace "/FINB/" which I suspect has something to do with BCS (currently set to "Not modifiable")?
    What are the correct system settings for the BCS system to function correctly, and what is the normal procedure for maintaining master data in SEM-BCS? - by transport requests or by changing directly in the productive system?
    Best regards
    Thomas
    P.S.: Are there any usefull resources for BCS on the Internet? The help in the system is very limited and I can't find anything on the SAP marketplace.
    Message was edited by:
            Thomas Ringe Pontoppidan

    Hi Dan,
    Example: you have a single selection containing a set (not range) of separate values. Then you decided to change the set (adding one more value, for example). Are you saying that this single selection change in DEV will be reflected automatically in PROD? 
    From my experience I know that while using single selections, the system replaces it by the set/range/node. And when a single selection was changed, nothing yet happened with elimination settings using SS. You have to go into each part of the settings in the method and refresh the SS. You'll see that only after that the set of values was changed. It's obvious for me that if I don't do this refreshing in DEV and then import the request into PROD, I'll have the old, not modified, version of my settings.

  • Deploying mappings by changing Source/production system using OMB Scripting

    Hi Mark,
    I am now trying to deploy my mappings from DEVELOPMENT environment to PRODUCTION environment.
    Now my mappings are point to DEVELOPMENT Source System and DEVELOPMENT target system. When I deploy these mappings should point to PRODUCTION Source System and PRODUCTION target System.
    I could get some help from the forum for deploying the mappings point to PRODUCTION target system, but I couldnt find any help how to change the Source System Location. I have exported all my mappings (.xml files) in the C:\OWBDeploy directory.
    How do we register and unregister a location using OMB Scripting?
    How to write a batch deployment action without using deployment manager?
    Provide a example to deploy the mappings using OMB script
    for both source and target systems locations.
    I am using Oracle 9.2, OWB 9.2.0.2.8, OWF 2.6 and OMB 9.2.0.2.8.
    Regards,
    Shreedhar

    Below script will deploy all the mappings in a module. It can be used with filter condition like mappings which start with ‘M_D’ or ‘M_F’ also. Above script will deploy mappings very effectively comparing with GUI. Frequent problem in OWB mapping execution ‘ TASK not found’ error will not occur, if we deploy the mappings using above scripts.
    Steps to Deploy All Mappings in a Module
    Start the OMB PLUS from Command Prompt or Start Menu
    Change the context to the respective Project
    Connect to Design Repository
    Register the Location Properties if the deployment is happening first time in the target schema.
    Change the context to the respective Module
    Use foreach and OWBCREATE command to create a Deployment Plan for Droping if any previous deployment for all mappings
    Use foreach and OWBCREATE command to create a Deployment Plan for Newly Deploying the Mapping
    Use foreach and OWBDEPLOY command to run the Drop Deployment Plan
    Commit
    Use for each and OWBDEPLOY command to run the Create Deployment Plan
    Example
    OMBCONNECT mis_owb904_rep/[email protected]:1521:ulyut03s
    OMBCC '/IGMS_MIS_GEMNCAP_FOC'
    OMBCONNECT RUNTIME 'ST_DWH_RUNTIME_FOC' USE PASSWORD ‘MIS_RT_OWNER’
    OMBREGISTER LOCATION 'ST_LOC_CURRENTMISTARGET_FOC' SET PROPERTIES (Host, Port, Service, Schema, Password) \
    VALUES ('10.202.148.176', 1521, 'ULYUT01M','MIS_OWNER', 'MANAGER')
    OMBCC '/IGMS_MIS_GEMNCAP_FOC/CURRENTMISTARGET'
    foreach mappingname [OMBLIST MAPPINGS] {
    OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN '$mappingname.DROP' ADD ACTION '$mappingname.DROP' \
    SET PROPERTIES (OPERATION) VALUES ('DROP') SET REFERENCE MAPPING \
    '/IGMS_MIS_GEMNCAP_FOC/CURRENTMISTARGET/$mappingname';}
    foreach mappingname [OMBLIST MAPPINGS] {
    OMBDEPLOY DEPLOYMENT_ACTION_PLAN '$mappingname.DROP'
    OMBCOMMIT;}
    foreach mappingname [OMBLIST MAPPINGS] {
    OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN '$mappingname.CREATE' ADD ACTION '$mappingname.CREATE' \
    SET PROPERTIES (OPERATION) VALUES ('CREATE') SET REFERENCE MAPPING \
    '/IGMS_MIS_GEMNCAP_FOC/CURRENTMISTARGET/$mappingname';}
    foreach mappingname [OMBLIST MAPPINGS] {
    OMBDEPLOY DEPLOYMENT_ACTION_PLAN '$mappingname.CREATE'
    OMBCOMMIT;}

  • Profit center change in production system

    Dear Experts,
    We are currently on SAP R/3 4.7.
    We have a situation where we need to do a reorganization of profit centers in an already running production system.
    Could someone let me know what is the best approach to do this in the SD module. What is the impact with rference to Scheduling agreements/ sales orders, etc. Are there any existing programs in SAP R/3 to take care of this change?
    Are there SAP notes/ documents that I can go through that give an ideas of the Dos and DON'Ts while making this change.
    Sharing of past experiences/problems would also go  long way.
    In case someone has some existing documentation regarding this kind of issue, please share it with us .
    Best regards,
    Saraswathi

    Hi
    http://www.financialsexpertonline.com/article.cfm?session=&id=4782
    Regards

  • Promoting Changes of Distrbution model to production system

    Hi Experts,
                    There is need for changing the distribution model in production system, if we promote the distribution model from development system, we have to run BDLS to change the sender and partner names. But this requires down time of production system, which we dont want to take. And we cant run BDLS when the transaction are carrying out by users. Please suggest the best way to promote the changes of distribution model to production system..
    Cheers,
    Prasanna

    The only other way I can think of is make BD64 related table directly maintainable in Production so it will allow changes in Production system.
    You can get the table names to update from your tranport request that you are planning to move to production.
    I think thats the way systems are generally configured because of the Issues you are facing.
    Regards
    Shital

  • Replicate data from one client to another in a production system

    Hello,
    I have two client in production system. Whenever a equipment is created in one client it should be replicated in another client and whenever a equipment is changed in one client the changes should be replicated to another client.
    Data should be immediatly replicated to the another client.
    Can basis do some setting so that the two client will always have the same data for equipments.
    or i have to get the data from one system and send it to another system through idoc and update that data in another system. This will take a lot of time.
    or is there any easy way

    Hi Sachin,
    You need custom program to achieve this requirement. Either you can use ALE+IDoc or direct BAPI function module call.
    This should happen within seconds if designed properly.
    Regards,
    Avinash

  • Two clients in XI system

    Hi all,
    Actually client 100 is created in Production .while installation in java engine its through some error, we are not able to continue the installation & we are not able to connect the jave engine with client 100.So that we created the new client 101 and we made the client copy again and started installation its completed succesfully.So there is any issue that of two client in production system & Can we will delete the 100 client in the production system is there is any issue.
    pls help me in this ASAP.
    Kind Regards,
    Gopinath.

    hi,
    if you don't have any messages yet
    delete it and start the installtion once more
    it may help to prevent many problems <b>in the future</b>
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Problem when transporting form from DEV system to PRODUCTION system

    Hi Experts,
    We are developing forms in ABAP, for example there is a form developed in dev system and this form has JS coding in some UI elements events like initialize, on change and on exit; also has one script object defined as variable. this script object has some functions defined in order to do some common validations and field specific ones too.
    The form in DEV work fine, all the functions calling, all the validations and the events are working properly as expected. But there is a problem when we moved the changes done in development system into production system. Specifically the script object has the problem: even though the coding is the same in both systems, in production system we had an script error: "Body.CATALOGPARAMS has no properties", as if the Body.CATALOGPARAMS was never instanciated, or it is not defined...
    The code that produces this error is the following:
    var itemCount = 0;
    itemCount = Body.CATALOGPARAMS.DATA.instanceManager.count;
    CATALOGPARAMS is table defined as context table coming from an ABAP FM where is filled and passed into the form.
    In order to fix this problem I changed that part for the following
    var itemCount = 0;
    var catalogTable = null;
    catalogTable = xfa.resolveNode("Body.CATALOGPARAMS.DATA");
    itemCount = catalogTable.instanceManager.count;
    This still works as fine as the other in DEV system. But my question is: will I have the same problem when we transport the changes to production system, you have to know that a transport is not something that you can do every day, so I am taking precautions before the transport. Which of both coding is the best for doing this?
    Any observations, comments, questions in order to clarify some points are welcome, so please do it.
    In advance, thanks a lot.
    Mauricio.-
    Edited by: Mauricio Poblete on May 11, 2010 4:20 PM

    As always, you are the first one to reply... thanks for that!
    before everything, I activated the form, then I added this form to a new transport using se80 transaction: I navigated through the form objects and I added the form to a new transport by second click on the form -> other functions -> write transport entry. is this the correct way to assign a transport package with the entire form (including script objects, layouts, and all you told in the last reply)??
    Can you give me a guide on how-to add the specific parts to the same transport for forms?
    as always, thanks in advance.
    Mauricio.-

  • Reversing changes from production !

    Dear Friends,
    I have done a successful transport of java change to production system using CMS.
    Can I revert it back?
    Can I revert it back to previous of previous?
    If possible, how can I do it?
    Documents and links prefered.
    Thanks in advance,
    Regards,
    Lakshmikantha

    Click on the History button, select time frame of the last correct import. Pickup the "previous" change and add it to the import queue (+ button on the right hand top corner). It will be in your import queue and you can re-import again. You have to make sure you to select all the components in the same build.
    -RK

  • Regarding changes in production.

    Hi all.
    I would like to know from the SAP point of view, as to why we can't make any changes in Production landscape?
    Regards,
    Swaroop.

    Hi Swaroop ,
    Production system is the main system of client and is having real time data.
    If you are making changes on production system this data can be effected and hence the same is not recommended.
    Please search sdn for further clarifications .

  • Not able to change the data of test data containers in production system

    Dear All,
    We have created eCATT scripts in Development SolMan System and moved the transports to Production SolMan System.  Customer wants to change the data at Test data containers and run the scripts in production system but we are not able to edit the data. 
    May be the reason is SCC4 transaction code has set the below option.
    Changes and transports for client-specific Objects
    u2022 No changes allowed
    Customer doesnu2019t want to change the above option and wanted to change the test data containers to give different datau2019s and run the eCATT scripts.
    Could you please let me know the solution for this?
    Your help is really appreciated.
    Thanks,
    Mahendra

    eCatt has the feature where you don't need to transport the scripts or test configuration to our target system. We can keep all our scripts and test data in Solman and run this script any other system in your landscape using the System data container and target system.
    Maintain the production as one of the target system in System container in Solman and point that system while running the script. Change the test data in Solman to run this script.
    Let me know if you need more information
    thanks
    Venkat

  • Support message and change requests only for production system

    Hi guys,
    I would like to connect the solman helpesk with CHARM ( CHARM is still running ).
    In CHARM I have to create a CR only for production system. ( don't know why - but works as designed).
    In SAP helpdesk I can create support messages for every kind of system type but if I want to connect both (HD and CR) , the source system (ibase component) of the issue will copied to the CR and runs in error because of the rule (only p-system) of CHARM.
    Of course I can change the ibase to production system manually in SDCR but it seems a very error-prone method.
    Now my question: is it possible to change the ibase component due to the creation of CR by copy rule or something like this?
    Kind regards
    Rayko

    Hi Rayko,
    We do not have this option.
    Once in ChaRM, we assume that the changes will always correct an issue in the PROD system.
    I would recommend to open the tickets directly with the PROD system IBase, once the issue is also happening there.
    Best Regards,
    Fernando

Maybe you are looking for