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

prompt for customizing request

Former Member
0 Likes
1,858

Hello.

i need to call a  prompt for customizing request dynamically

from an ABAP program and not directly from SM30.

does  anyone know what the f.m. for using  this action?

Ronen

3 REPLIES 3
Read only

kmoore007
Active Contributor
0 Likes
1,111

Look at these two functions:

CALL FUNCTION 'TR_REQUEST_MODIFY' - creates the transport request


CALL FUNCTION 'TR_APPEND_TO_COMM_OBJS_KEYS' - appends objects to the transport request

Read only

Former Member
0 Likes
1,111

The FM TR_OBJECTS_INSERT gets called when customizing request prompt is shown.

Put a breakpoint in this FM and use SM30 to see what parameters are required.

Read only

Former Member
0 Likes
1,111

Use FM TR_OBJECTS_INSERT to add the objects from the program. Before passing values to this FM, you  need to invoke TR_OBJECTS_CHECK function module with table name.

You can also try TRINT_OBJECTS_CHECK_AND_INSERT

Another option is 'TR_REQUEST_CHOICE'.

Check this sample code.

http://wiki.sdn.sap.com/wiki/display/ABAP/Transporting+Table+Entries+in+ABAP+programmatically