When to manually (re) transfer a class, what list of objects should be included?

Faced with a dependency problem, I need to manually transfer one class in the transport request in order to go live in front of the list of other transports.

I wrote an R3TR CLAS entry in the list of objects, but now I'm worried that this will only include the class header, not the full implementation. In this case, I believe that I will also have to transfer all individual methods as LIMU METH to the list of objects. Theoretically, the header will be sufficient, since the code will not actually be launched during the production process, I just need the method definition to exist, since there is a link to the source code in the transport, which actually should go live. But I assume that if this only carries the header, the activation will fail because it will lack implementation.

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

+5
source share
1 answer

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

On the other hand, if any Z ... object (a table, structures, data elements, etc.) is used in the class, and they are not yet in the target system, they must also be included, otherwise the import will not be performed.

+6
source

Source: https://habr.com/ru/post/1273203/


All Articles