Overview transport requests for all systems
In the R/3 transport management system you can find a lot of
information about transports, but a list with the status (import
date/time) of transports for the development system, quality system and
production is hard to build from standard SAP. So i have created a
Z-program for it.
The basic part of the program is the data retrieval from the relevant tables and using the relevant function modules :
- Function modules:
- STRF_READ_COFILE : Read and interpret contents of the COFILE
The select-options for my report are :
- S_TRKORR (type E070-TRKORR) : transport request or task id
- S_AS4TXT
(type E07T-AS4TEXT) : transport request or task description (transports
description belonging to project starts with project relevant prefix,
so we can select easily all project related transports)
The following systems are uses :
- DEV for development
- QAS for quality
- PRD for production
The code for the data retrieval is :
FORM get_data CHANGING pi_output TYPE tt_output.
<br /> DATA: li_output2 TYPE tt_output,<br /> lwa_output LIKE LINE OF li_output2,<br /> li_cofi_lines TYPE TABLE OF tstrfcofil,<br /> lwa_cofi LIKE LINE OF li_cofi_lines.<br /> 1. get all relevant transport request/task based on select-options<br /> SORT li_cofi_lines BY tarsystem trdate trtime.<br /> get first DEV date/time in the log
Just wanted to say..."Congratulations on your first blog" -:D I'm looking forward to see more stuff from you -;)
Greetings,
Blag.
This is really a great effort.
I am trying to build the program with this form but i am getting the error at field symbol and at 4th points...
can you please send me the full program if you have... I really appreciate your gr8 approach.
thanks in advance.