cancel
Showing results for 
Search instead for 
Did you mean: 

How sap custom class will move to Production environment?

former_member309899
Participant
0 Kudos

Hi All,

There is a sap custom class which has multiple methods. some methods are already modified and saved in one TR. Now i want to make changes in one of the method and needs to move only that particular method to Production environment. My question is while i move my method, is system will move entire class to production environment or only my method will be move to production ?

Thanks,

Nagarajan S.

Sandra_Rossi
Active Contributor
0 Kudos

Look at the objects in your transport request:

  • R3TR CLAS <classname> : transports the whole class
  • LIMU METH <classname><methodname> : transports the method only

Accepted Solutions (0)

Answers (2)

Answers (2)

matt
Active Contributor

If your class is already transported and you change a method - but not its definition - the ONLY the method will be recorded in the transport and sent to production.

Look at the contents of the transport - the actual object list.

R3TR CLAS <classname> is a full class

LIMU METH <classname> ... <method> is just the method you changed.

There are a few other LIMU components for class that cover local types, unit tests, public, private, protected headers etc.

abo
Active Contributor

Check out the locks in the TR and you'll most likely find that the whole class is locked.

In this case, editing a single method will NOT require a new TR and you won't be able to transport your method by itself.