Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Change Requests' relationship checking tool

Former Member
0 Likes
664

Due to the massed up change requests, I made a small tool to help improving change request release and tranport work.

It can be used to find out all related crs according to the objects they include but not table content type object. You can use it to find out the transport status and wrong sequences of related change requests.

Hope that's helpful. Any idea and improving suggestions or defects report will be very very welcome.

Try it.

download it here: http://code.google.com/p/abapcrcheck/

just download the zip file and extract it, create the program and copy code to it, it works fine in different systems.

Message was edited by:

Zhang Liu

Due to the massed up change requests, I made a small tool to help improving change request release and tranport work.

It can be used to find out all related crs according to the objects they include but not table content type object. You can use it to find out the transport status and wrong sequences of related change requests.

Hope that's helpful. Any idea and improving suggestions or defects report will be very very welcome.

Try it.

download it here: http://code.google.com/p/abapcrcheck/

just download the zip file and extract it, create the program and copy code to it, it works fine in different systems.

Message was edited by:

Zhang Liu

3 REPLIES 3
Read only

Former Member
0 Likes
643

One more thing, I wrote a how-to-use, but for now, only in Chinese, I will wrote an English one later.

Hope that's helpful.

Read only

uwe_schieferstein
Active Contributor
0 Likes
643

Hello Zhang

Neither version of your report contains the source for <b>ZTRACK_COUNT</b>.


*&---------------------------------------------------------------------*
*& Report  ZTRACK_CR_CHECK
*&
*&---------------------------------------------------------------------*
*& Version Beta 1.0.1 powered by Alex support site:
*&       http:/ztrack.imalex.net
*& Doesn't check R3TR,TABU type object,
*& usually they don't calls overwriting.
*&---------------------------------------------------------------------*

REPORT  ZTRACK_CR_CHECK LINE-SIZE 255 NO STANDARD PAGE HEADING.

INCLUDE ZTRACK_CR_CHECK_TOP.
INCLUDE RDDKORRI.
INCLUDE ZTRACK_CR_CHECK_F01.
INCLUDE ZTRACK_CR_CHECK_F02.

START-OF-SELECTION.
  PERFORM SUB_INIT_OBJ_NAME_FILTER.
  PERFORM SUB_GET_TRKORR_RELATED.
  PERFORM SUB_GET_TRKORR_LOGS.

END-OF-SELECTION.
*  PERFORM SUB_COUNT IN PROGRAM ZTRACK_COUNT.  " not provided
  PERFORM SUB_WRITE_DATA.

Regards

Uwe

Read only

Former Member
0 Likes
643

Sorry man, I've corrected it. Please redownload it again or just simly commented that line.