Application Development Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
Former Member
0 Kudos

Sometimes as part of housekeeping activity we need to bring the custom programs/ function modules in synch with the Production System across all the SAP Boxes in the landscape.

Here, I give a brief overview of how that can be implemented with a custom program.

The custom program can be developed following the given steps:

a.     Create a program which takes a custom Progam or Custom Function Module name as input (we can later on enhance the program to be able to synchorise for         other objects). Here we take an example where we provide the custom function module - ZASTERIDOC_CREATE_REQ_MATMAS_M which is used as an                        example to bring  the versions in synch.

Inside the program the logic needs to be built up in the following lines:

b.     Read table VRSD with the object type and the object name:

        We get the Transport Request numbers against each version.

        We sort the table in the descending order by date and time so that we start with the latest transport.

c.     Now we need to check the presence of the transports in QUAL/PRD system by using the FM: STRF_READ_COFILE, in the descending order.

        Here in this case, as we run the FM for the transport : DE3K9A00AR, we see that the cofile has the entries for both Quality and Production

       

         

       Thus we now know that this version is present in all the systems and is the latest version.

       If it is not present then we will not get the cofile entries.We can then check with the next to the latest TR.

d.    When we get to a TR which holds for the Quality or the Prod system and we want to synchronize them, we can then again refer back to the entries of the            VRSD table and check for the relevant version depending on the TR.

e.     As we get the OBJECTNAME, OBJECT TYPE and the version number we can use the SUBMIT the values to the program RSEDTVE1, thus reverting back          the programs to the active version in PRD.