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

Similar Messages

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

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

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

  • 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

  • Ran Code:  Changed Priviledges, Services, System Files, HD etc.

    I just wanted to print my login screen in Single User Mode, used  codes I didn't write down (from off the internet, no less) and I cannot remember
    ls | lpr
    and/or
    #/bin/sh
    gnome - terminal
    echo -n "new terminal"
    please someone help me, i did something very stupid!!!
    CRDs-MacBook-Pro-15:~ cat$ ls -a
    .            .bash_profile        Music
    ..            Desktop            Pictures
    .CFUserTextEncoding    Documents        Public
    .DS_Store        Downloads        Send Registration
    .Trash            Library            Sites
    .bash_history        Movies            ytb.uid
    I ran a code I got off the internet and I am paying for it dearly.  All application Services are no longer active.  I am missing entire folders and pref. panes.  I erased my partition, reinstalled 10.6 and it changed nothing.  I cannot remember exactly what it was, however, it could be.  Console says so many scary things:
    013-03-28 08:48:12 -0700
    ** Starting System Migration - 2013-03-28 08:48:12 -0700 -
    2013-03-28 08:48:12 -0700 Disabling TimeMachine during Migration
    2013-03-28 08:48:12 -0700 ===== searchForValidSystems =====
    2013-03-28 08:48:13 -0700 . Found disk (diskIdentifier=disk1, mountpoint=(null), isInternal=1, filesystem=(null))
    2013-03-28 08:48:13 -0700 . Found disk (diskIdentifier=disk1s1, mountpoint=(null), isInternal=1, filesystem=(null))
    2013-03-28 08:48:13 -0700 . Found disk (diskIdentifier=disk1s2, mountpoint=(null), isInternal=1, filesystem=(null))
    2013-03-28 08:48:16 -0700 . Found disk (diskIdentifier=disk1s3, mountpoint=(null), isInternal=1, filesystem=HFS+ hfs Mac OS Extended Apple_HFS)
    2013-03-28 08:48:16 -0700 . Found disk (diskIdentifier=disk0, mountpoint=(null), isInternal=1, filesystem=(null))
    2013-03-28 08:48:16 -0700 . Found disk (diskIdentifier=disk0s1, mountpoint=(null), isInternal=1, filesystem=(null))
    2013-03-28 08:48:16 -0700 . Found disk (diskIdentifier=disk0s2, mountpoint=/, isInternal=1, filesystem=Journaled HFS+ hfs Mac OS Extended (Journaled) Apple_HFS)
    2013-03-28 08:48:16 -0700 V /: DSDB found.
    2013-03-28 08:48:16 -0700 + Adding system /
    2013-03-28 08:48:16 -0700 External Volume Appeared : [(null)] (W_NOT_SCANNED) (IS_Internal) (NOT_Mountable) (NOT_Mounted) (disk1)
    2013-03-28 08:48:16 -0700 External Volume Appeared : [(null)] (W_NOT_SCANNED) (IS_Internal) (NOT_Mountable) (NOT_Mounted) (disk1s1)
    2013-03-28 08:48:16 -0700 External Volume Appeared : [(null)] (W_NOT_SCANNED) (IS_Internal) (NOT_Mountable) (NOT_Mounted) (disk1s2)
    2013-03-28 08:48:16 -0700 External Volume Appeared : [(null)] (W_NOT_SCANNED) (IS_Internal) (IS_Mountable) (NOT_Mounted) (disk1s3)
    2013-03-28 08:48:16 -0700 External Volume Appeared : [(null)] (W_NOT_SCANNED) (IS_Internal) (NOT_Mountable) (NOT_Mounted) (disk0)
    2013-03-28 08:48:16 -0700 External Volume Appeared : [(null)] (W_NOT_SCANNED) (IS_Internal) (NOT_Mountable) (NOT_Mounted) (disk0s1)
    2013-03-28 08:48:16 -0700 External Volume Appeared : [/] (W_NOT_SCANNED) (IS_Internal) (IS_Mountable) (Mounted) (disk0s2)
    2013-03-28 08:48:16 -0700 V /: DSDB found.
    2013-03-28 08:48:16 -0700 + Adding system /
    Thu Mar 28 08:46:12 PDT 2013
    creating system keychain entries
    ...Generating key pair...
    ...creating certificate...
    Serial Number      : 6D 6E D5 92
    Issuer Name        :
       Common Name     : com.apple.systemdefault
       Org             : System Identity
    Subject Name       :
       Common Name     : com.apple.systemdefault
       Org             : System Identity
    Cert Sig Algorithm : OID : < 06 09 2A 86 48 86 F7 0D 01 01 05 >
       alg params      : 05 00
    Not Before         : 15:46:13 Mar 28, 2013
    Not After          : 15:46:13 Mar 23, 2033
    Pub Key Algorithm  : OID : < 06 09 2A 86 48 86 F7 0D 01 01 01 >
       alg params      : 05 00
    Pub key Bytes      : Length 140 bytes : 30 81 89 02 81 81 00 D1 ...
    CSSM Key           :
       Algorithm       : RSA
       Key Size        : 1024 bits
       Key Use         : CSSM_KEYUSE_ENCRYPT CSSM_KEYUSE_VERIFY CSSM_KEYUSE_WRAP
    Signature          : 128 bytes : C4 4A 8D 39 EA 18 B1 8A ...
    Extension struct   : OID : < 06 03 55 1D 25 >
       Critical        : FALSE
       purpose  0      : OID : < 06 09 2A 86 48 86 F7 63 64 04 04 >
    ..cert stored in Keychain.
    ..identity registered for domain com.apple.systemdefault.
    ...Generating key pair...
    ...creating certificate...
    Serial Number      : 03 8A 71 9D
    Issuer Name        :
       Common Name     : com.apple.kerberos.kdc
       Org             : System Identity
    Subject Name       :
       Common Name     : com.apple.kerberos.kdc
       Org             : System Identity
    Cert Sig Algorithm : OID : < 06 09 2A 86 48 86 F7 0D 01 01 05 >
       alg params      : 05 00
    Not Before         : 15:46:14 Mar 28, 2013
    Not After          : 15:46:14 Mar 23, 2033
    Pub Key Algorithm  : OID : < 06 09 2A 86 48 86 F7 0D 01 01 01 >
       alg params      : 05 00
    Pub key Bytes      : Length 140 bytes : 30 81 89 02 81 81 00 CA ...
    CSSM Key           :
       Algorithm       : RSA
       Key Size        : 1024 bits
       Key Use         : CSSM_KEYUSE_ENCRYPT CSSM_KEYUSE_VERIFY CSSM_KEYUSE_WRAP
    Signature          : 128 bytes : 19 40 CF EA 37 48 FD 4C ...
    Extension struct   : OID : < 06 03 55 1D 25 >
       Critical        : FALSE
       purpose  0      : OID : < 06 09 2A 86 48 86 F7 63 64 04 04 >
    ..cert stored in Keychain.
    ..identity registered for domain com.apple.kerberos.kdc.
    edu.mit.Kerberos.krb5kdc: Already loaded
    added /usr/sbin/krb5kdc to acl for com.apple.kerberos.kdc
    /usr/sbin/kadmin.local-q add_principal -randkey afpserver/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E 69B033DF6525F5B076DB5BC9BD29022C
    WARNING: no policy specified for afpserver/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E 69B033DF6525F5B076DB5BC9BD29022C; defaulting to no policy
    Authenticating as principal root/admin@LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C with password.
    Principal "afpserver/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235 E69B033DF6525F5B076DB5BC9BD29022C" created.
    /usr/sbin/kadmin.local-q ktadd afpserver/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E 69B033DF6525F5B076DB5BC9BD29022C
    Authenticating as principal root/admin@LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C with password.
    Entry for principal afpserver/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E 69B033DF6525F5B076DB5BC9BD29022C with kvno 3, encryption type Triple DES cbc mode with HMAC/sha1 added to keytab WRFILE:/etc/krb5.keytab.
    Entry for principal afpserver/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E 69B033DF6525F5B076DB5BC9BD29022C with kvno 3, encryption type AES-128 CTS mode with 96-bit SHA-1 HMAC added to keytab WRFILE:/etc/krb5.keytab.
    Entry for principal afpserver/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E 69B033DF6525F5B076DB5BC9BD29022C with kvno 3, encryption type AES-256 CTS mode with 96-bit SHA-1 HMAC added to keytab WRFILE:/etc/krb5.keytab.
    /usr/bin/defaults write /Library/Preferences/com.apple.AppleFileServer kerberosPrincipal afpserver/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E 69B033DF6525F5B076DB5BC9BD29022C
    /usr/sbin/kadmin.local-q add_principal -randkey cifs/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B03 3DF6525F5B076DB5BC9BD29022C
    WARNING: no policy specified for cifs/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B03 3DF6525F5B076DB5BC9BD29022C; defaulting to no policy
    Authenticating as principal root/admin@LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C with password.
    Principal "cifs/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B0 33DF6525F5B076DB5BC9BD29022C" created.
    /usr/sbin/kadmin.local-q ktadd cifs/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B03 3DF6525F5B076DB5BC9BD29022C
    Authenticating as principal root/admin@LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C with password.
    Entry for principal cifs/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B03 3DF6525F5B076DB5BC9BD29022C with kvno 3, encryption type Triple DES cbc mode with HMAC/sha1 added to keytab WRFILE:/etc/krb5.keytab.
    Entry for principal cifs/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B03 3DF6525F5B076DB5BC9BD29022C with kvno 3, encryption type AES-128 CTS mode with 96-bit SHA-1 HMAC added to keytab WRFILE:/etc/krb5.keytab.
    Entry for principal cifs/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B03 3DF6525F5B076DB5BC9BD29022C with kvno 3, encryption type AES-256 CTS mode with 96-bit SHA-1 HMAC added to keytab WRFILE:/etc/krb5.keytab.
    /usr/bin/defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server LocalKerberosRealm LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C
    /usr/sbin/kadmin.local-q add_principal -randkey vnc/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B033 DF6525F5B076DB5BC9BD29022C
    WARNING: no policy specified for vnc/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B033 DF6525F5B076DB5BC9BD29022C; defaulting to no policy
    Authenticating as principal root/admin@LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C with password.
    Principal "vnc/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B03 3DF6525F5B076DB5BC9BD29022C" created.
    /usr/sbin/kadmin.local-q ktadd vnc/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B033 DF6525F5B076DB5BC9BD29022C
    Authenticating as principal root/admin@LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C with password.
    Entry for principal vnc/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B033 DF6525F5B076DB5BC9BD29022C with kvno 3, encryption type Triple DES cbc mode with HMAC/sha1 added to keytab WRFILE:/etc/krb5.keytab.
    Entry for principal vnc/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B033 DF6525F5B076DB5BC9BD29022C with kvno 3, encryption type AES-128 CTS mode with 96-bit SHA-1 HMAC added to keytab WRFILE:/etc/krb5.keytab.
    Entry for principal vnc/LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C@LKDC:SHA1.A171235E69B033 DF6525F5B076DB5BC9BD29022C with kvno 3, encryption type AES-256 CTS mode with 96-bit SHA-1 HMAC added to keytab WRFILE:/etc/krb5.keytab.
    LKDC:SHA1.A171235E69B033DF6525F5B076DB5BC9BD29022C
    THERE IS MORE AND MORE AND MORE.  PLEASE HELP ME.  WHAT COMMAND OR SHELL CAN I RUN TO PUT THINGS BACK?

    what is the message that you get when you try to open a file?
    1.  You can try to change the permissions to see if they will allow you to write to the file(s).
    2.  Naviagte to your Home folder Macintosh HD-->Users-->Username and press command+i to get info and on the bottom of the screen click on the lock and unlock the security check, remove your current username and then re-add it and next to the minus symbol click and select apply to enclosed folders

  • 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

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

  • Code changes are not reflecting

    Hi,
    I am facing one strange issue.
    One of my colleague developer made some code changes. He checkin the code and was transported successfully to quality system. The changes are working fine in quality system.
    Now using my NWDS I synced the code by connecting to NWDI. When I build and deployed the code in my local server I am not able to see the all the code changes in my system. I am able to see some label changes but not all the code changes.
    I checked the deployment of my local server by keeping some print statements and it is fine.
    I removed the entire configuration from Development Configurations perspective and imported the configuration, created the project again. But still I am facing the same issue.
    Can anyone help me in resolving this issue.
    Regards
    MQ

    Hello MQ,
    That is weired..Can you check in C:/USR/...  where your JSP's and Java classes gets deployed. See if you get the changes deployed at this location you are looking for. You need to decompile your class file to Java file to see the content of it. If you still have issues , remove all the DC's from your NWDS, import again from the track , undeploy your EAR from SDM, and deploy it again.
    But some other functionalities which are coming in my system are not coming in that system.  Did you deploy to any server? If so, are you seeing all your changes on the server. Check you are connecting to right NWDI and to the right track.
    I am sure you might have tried all these options..but nothing is striking to my  mind at this time.
    Thanks,
    Raj

  • 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

  • FSE2 - Change Financial statement version in production system

    Hi,
    I have an requirement, my client wants to change the financial statement version from FSE2 transaction in the production system.
    For this I made FSE2 and V_T011 as current settings in SOBJ transaction and executed the transaction FSE2 which is still giving error message of "Client 032 has status 'not modifiable'".
    Can any one let me know how to make it happen? so that user can able to maintain the financial statement version from FSE2 transaction in production system.
    Thanks in advance.
    Regards,
    Abdul

    Hi Abdul,
    I am not sure if the problem has been resolved or not but if you can follow the steps below I hope your problem will be solved.
    First, find out that what application area and message number are issued when you try to modify the financial statement version. To do this, go to t-code FSE2 in your production system. Once message pops up click on help button beside the exist button to display the long text of the message.
    Usually this message number is FE146 which means the application area is FE and the message number is 146. (I know you know this )
    In order to switch off this message, go to T-code OBA5, enter APPLICATION AREA 'FE" and press enter key. Now click on NEW ENTRIES button, enter the relevant settings Msg: 146, leave user name blank, Online "-",  Batchl "-", Standard "E". Press the enter key again and click on Save button.
    You can now go to the Production client and attempt to modify the financial statement version by going into T-code FSE2. Enter relevant financial statement version and click on the EXECUTE button. When you make your changes and click on SAVE, you will see a message that "Client xxx has status 'not modifiable'".
    If you press Enter key, the system will display a message saying that financial statement version has been changed and your changes will have taken effect.
    I hope this way your problem will be resolved.
    Let me know if this help
    Thanks
    Naseem

Maybe you are looking for