have 1000 transport request to release.I cannot relaese one by one in SE10.Can any1 eaxplain how to relase all the request at the same time.
Kiran,
I am asking abt transport release not importing.....
Tjk,
https://www.sdn.sap.com/irj/sdn/advancedsearch?query=mass%20transport&cat=sdn_all
Say thnks to Sanjeev.
Basically you people can do mass transports, as our freinds told that the objects can be in multiple transports and the transportorder should be transporte according to the release of the time. For this we have a transaction "SM49", before transporting the transportorders into PROD we have to excute this transaction so that STMS adjusts automatically the transportorder according to the time of the transportorder released.
Natrually we can transport mass transports at a time in STMS. After releasing the transportorders from QA to PROD, in few minutes all transports will be found in the PROD qeue System from there u can select them as bundel and take the "BIG Transport Vehicle" where it transports at time. This is my exp. as I am responsible for our Transportmanagementsystem.
K.Kiran.
Message was edited by:
Kiran K
Kiran ,
U r not undersatnding my question.I m not asking abt importing and transporting.
I m asking abt releasing in SE10,once we released all the request in DE10 ,then only we can transport using STMS right?
Tjk,
Correct me if I am wrong.
Why we create a transport request?
To move a object from one client to another client.right?
How we will move the object from one client to another client?
By creating a transport request and then releasing it by pressing the lorry button,right?
If that is not what you want then let's see what SDN experts says.Did you go through Anjis answer too?
K.Kiran.
Kiran,
I like to release the request using lorry button,but I dont like to transport to any other client.Transport(after released) means transporting objects from one client to some other client.Now i like to release the request in the same client.
tjk,
Fine,Can you please let me know what a RELEASE means?
Sorry,I don't know the answer for your query.
K.Kiran.
Once we released the request it will go to STMS.From there we can transport to any other client.In STMS we have option mass transportation.
Hi
From Se09
check the following
go to the requests screen
from menu
REQUEST/TASK-> RELEASE->DIRECTLY OR BACKGROUND
REQUEST/TASK->MORE REQUESTS
may be useful
Reward points if useful
Regards
Anji
Hi Tjk,
Well if you r talking abt transporting between clients than it is done through T-Code: SCC1
The following ABAP code can help you:
&----
*& Report ZTSTAN001
*&
&----
*& Mass release of tasks/transport orders
*& - Run it first to release CTS-tasks
*& - Run it once again to release CTS-Change requests (creating the
*& Transport Orders)
&----
REPORT ZTSTAN001.
tables e070.
select-options strkorr for E070-TRKORR.
data: wakorr like e070-trkorr,
tabkorr like standard table of wakorr.
select trkorr from e070 into table tabkorr where trkorr in strkorr.
loop at tabkorr into wakorr.
CALL FUNCTION 'TR_RELEASE_REQUEST'
EXPORTING
IV_TRKORR = wakorr
IV_DIALOG = ' '
IV_AS_BACKGROUND_JOB = ' '
IV_SUCCESS_MESSAGE = ' '
IV_DISPLAY_EXPORT_LOG = ' '
EXCEPTIONS
CTS_INITIALIZATION_FAILURE = 1
ENQUEUE_FAILED = 2
NO_AUTHORIZATION = 3
INVALID_REQUEST = 4
REQUEST_ALREADY_RELEASED = 5
REPEAT_TOO_EARLY = 6
ERROR_IN_EXPORT_METHODS = 7
OBJECT_CHECK_ERROR = 8
DOCU_MISSING = 9
DB_ACCESS_ERROR = 10
ACTION_ABORTED_BY_USER = 11
EXPORT_FAILED = 12
OTHERS = 13.
endloop.
There is even a BAPI to release transport requests...
DATA: gt_e070 TYPE TABLE OF e070, return TYPE bapiret2. FIELD-SYMBOLS: <e070> TYPE e070. SELECT-OPTIONS: so_num FOR <e070>-trkorr. START-OF-SELECTION. SELECT * INTO TABLE gt_e070 FROM e070 WHERE trkorr IN so_num AND trstatus EQ 'D' " not yet released AND strkorr EQ space. " only request not task CHECK sy-subrc EQ 0. LOOP AT gt_e070 ASSIGNING <e070>. CALL FUNCTION 'BAPI_CTREQUEST_RELEASE' EXPORTING requestid = <e070>-trkorr complete = 'X' " Release request including tasks IMPORTING return = return. IF NOT return-type IS INITIAL. MESSAGE ID return-id TYPE return-type NUMBER return-number WITH return-message_v1 return-message_v2 return-message_v3 return-message_v4. ENDIF. ENDLOOP.
Regards,
Raymond