Application Development 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: 

How to change description of released transport request

Former Member
0 Kudos

Hi experts,

The transport requests tasks and are released and owner of TR also released, now need to modify description.

Is their any possible way to do it, because transport is not moved out of the system.

Thanks,

Pavan

1 ACCEPTED SOLUTION

former_member182387
Active Participant
0 Kudos

Hi

There is one way to achieve this.But this s not advisable.

1.) Got o FM 'TRINT_CHECK_REQUEST_CHANGEABLE'

At the line number 111 IF is_request_header-trstatus CA sctsc_states_released, put the break point.

1.) Double click the released request which you want to change the description.

2.) your EDIT option will be disabled. Just type '/h' in the tcpode area and press enter, your debugging will switched on.

3.) Then Press ENTER again, it will open the debugger screen, in the variable change the SY_UCOMM field to 'WB_DISP_EDIT_TOGGLE' . Then press F8.

4.) your control will be in the FM 'TRINT_CHECK_REQUEST_CHANGEABLE' line number 111. Try to skip this IF condition by using debug technique.

5,) Now you can change the description.Now you cant save this as Save button is disabled.Just press back button, you will get the message for save the changes.Just save it. Done.

Thanks and Regards,

Senthil Kumar Anantham.

8 REPLIES 8

Former Member
0 Kudos

Hi pavan

U cannot change the description of TR after releasing in a sysytem . But u can modify it after it reaches the next system in the smae way u do in dev .

Regards,

Martina

former_member182387
Active Participant
0 Kudos

Hi

There is one way to achieve this.But this s not advisable.

1.) Got o FM 'TRINT_CHECK_REQUEST_CHANGEABLE'

At the line number 111 IF is_request_header-trstatus CA sctsc_states_released, put the break point.

1.) Double click the released request which you want to change the description.

2.) your EDIT option will be disabled. Just type '/h' in the tcpode area and press enter, your debugging will switched on.

3.) Then Press ENTER again, it will open the debugger screen, in the variable change the SY_UCOMM field to 'WB_DISP_EDIT_TOGGLE' . Then press F8.

4.) your control will be in the FM 'TRINT_CHECK_REQUEST_CHANGEABLE' line number 111. Try to skip this IF condition by using debug technique.

5,) Now you can change the description.Now you cant save this as Save button is disabled.Just press back button, you will get the message for save the changes.Just save it. Done.

Thanks and Regards,

Senthil Kumar Anantham.

Former Member

Hi ,

Table E070 field AS4text . give it a try and check .

separate text for tr and task are maintained.

You need to change the table entry in debugging mode.

if it dosent solve take the basis guy to a party ..

BR,

Vijay.

Former Member
0 Kudos

Hi,

try this way.

all the transports are saved under table E070 and task description field is AS4TEXT

Write query in Yprogram to change description.


Update E070 SET AS4TEXT = 'Hello' where TRKORR = 'Transport Number'.
IF sy-subrc = 0.
 commit work.
ENDIF.

Prabhudas

Former Member
0 Kudos

Hi,

GOTO transaction SE16N .. enter table E07T.

In the command prompt enter "&SAP_EDIT" .. and press F8. (Give filtering criteria , say enter 'EN' for language)

Now change the description for the transport request you want.

Save.

Regards,

Srini.

0 Kudos

There was no change option in the screen. Only display

0 Kudos

Hi,

yes there is only display, if the transport reques has been released, you can do nothing more,

but you can change the description by using Debug mode.

As they have mentioned, go to se16n--> E07T--> debug--> change it --.> save.

Regards

Former Member
0 Kudos

DATA : wa_e07t TYPE E07T.

wa_e07t-TRKORR = 'W6DK900549'.

wa_e07t-LANGU = sy-langu.

wa_e07t-as4text = 'Test Munish'.

UPDATE E07T FROM wa_e07t.

Done......give ur required description in wa_e07t-as4text.

Regards

Munish Garg