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: 

Get the inactive objects from a transport request.

Former Member
0 Kudos

Hi All,

Is there are FM or program that SAP has to check the status of the objects from a transport request?

I need to trigger this functionality when releasing the task.

If the objects are inactive then I have to trigger a error message.

Any help is much appreciated.

Best regards,

Elena

1 ACCEPTED SOLUTION

pavanm592
Contributor
0 Kudos

Hi Elena,

Go to Se10 and place the cursor on the request to be released and in menu

Goto->Request/Task ->Complete check ->Display Inactive Objects.

Here you can get the inactive object list in the popup.

Regards,

Pavan

7 REPLIES 7

matt
Active Contributor
0 Kudos

You get an error when you release the transport, so there must be a function module or such like that does this check. Set up a test and run in debug - you'll probably find it quite easily.

Former Member
0 Kudos

Unfortunately I don't have access to release a transport request so I couldn't debug this scenario.

Good hint though.

Thanks and regards,

Elena

Former Member
0 Kudos

Hi Elena,

When the request is released the standard transaction uses function module TRINT_CHECK_INACTIVE_OBJECTS, you may be able to use this at the task level too.

Regards,

Nick


0 Kudos

This answer saved my day... In my job we are using SolMan+ChaRM, we have lost almost a day when we try to release a transport request in SolMan, only a message about "inactive objects" appear, but not a list of objects... we try running SGEN transaction... SE10->Display Inactive Objects... and nothing, the error stills... then reading this answer it works... Just a better recommendation is to use FM TRINT_RELEASE_WITHOUT_TRANSP, with IV_SIMULATION = 'X'...

pavanm592
Contributor
0 Kudos

Hi Elena,

Go to Se10 and place the cursor on the request to be released and in menu

Goto->Request/Task ->Complete check ->Display Inactive Objects.

Here you can get the inactive object list in the popup.

Regards,

Pavan

Former Member
0 Kudos

Thank you Pavan,

I have debugged this scenario and I got what I need it.

FM that I used to get the result is: TRINT_TDR_USER_COMMAND .

Have a lovely day ahead!
Best regards,

Elena

0 Kudos

Great ! i found the inactive objects..

Cause : If you are using charm and while trying create TOC from the charm, you will get error saying " Activate the inactive objects". Then we need to find the inactive the objects for the particular TR/TOC by the above method.

It did work for me.. 🙂