Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Manual transporting of class through the SAP CTS, which objects to include?

Faced with a dependency issue, I need to manually transport a single class in a transport request to go live before a list of other transports.

I've written a R3TR CLAS entry to the Object List but now I'm worried that this would only include the class header and not the full implementation. In that case I believe I'd have to also transport all individual methods as LIMU METH entries in the Object List. In theory the header would be sufficient as the code won't actually run in production, I just need the method definition to exist as there's a source code reference to it in the transports that actually have to go live. But I assume that if this does only transport the header, the activation will fail because it would be lacking the implementation.

When transporting a class, is a single R3TR CLAS object list entry sufficient or should I include all methods as LIMU METH entries in the object list as well?

like image 918
Lilienthal Avatar asked Nov 08 '17 10:11

Lilienthal


People also ask

How do you include an object from released transport request in SAP?

saperpguru. You can try this ; - Go to SE01 - Request -> Create - Choose Transport of Copies - Enter description - Click Include Object button (Ctrl+F11) - Choose Object list from request -> Enter Request Number which contains object(s) you want to copy. - That's your new Transport Request.

How can we include objects in transport request?

Please follow the steps below to include the object of a package in the transport request: Execute t-code SE38 in the SAP command field. On the next screen put the program name RSWBO060 . On the next screen, enter the desired package and choose under the Selections by Type and Name section choose between the following.

How do you manually transport in SAP?

If the table is standard table, Goto the table entries and select the check box near to that. Then goto menu TABLE ENTRY --> Transport entries --> It will ask for a pop-up to create the transport request --> Press Enter it will create the request. Transport it to QA.


1 Answers

R3TR CLAS ... is enough. It will include the class as a whole (header, methods, implementations, etc.)

On the other hand, if there is any Z... object (table, structures, data elements, etc) used in the class and they are not in the target system yet, than these also have to be included, otherwise the import will fail.

like image 171
József Szikszai Avatar answered Sep 20 '22 16:09

József Szikszai