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: 

Customizing transport

Former Member
0 Kudos
363

Hi,

How to create a customizing transport programatically for objects?

Regards,

Jey

8 REPLIES 8

matt
Active Contributor
0 Kudos
171

ABAP Objects are stored against workbench transports, not customizing ones.

Former Member
0 Kudos
171

Hi,

I want to cutomize my own objects ( not system objects) using customized transport.

Regards,

Jey

Former Member
0 Kudos
171

Hi, I don't want an alv tree control, I want to use the tree control for the navigation like in the se80 on the left side.

uwe_schieferstein
Active Contributor
0 Kudos
171

Hello Jey

Assuming that you have your own Z-customizing tables in order to customize your own applications my recommendation is to define them not as customizing table (delivery class = 'C') but as normal application table (delivery class = 'A').

If you need to secure access to this table create a maintenance view having the appropriate authorization group assigned.

Records of a class = 'A' table can be transported using a normal workbench request with the following entry:

R3TR TABU <name of table>    Key = 100*  (all client-dependent entries of client 100)
R3TR TABU <name of table>    Key = * (all client-independent entries)

Regards

Uwe

Former Member
0 Kudos
171

Hi,

I have to use customized transport object to transport the customized changes.

Regards,

Jey

0 Kudos
171

What customized changes? if you have defined a table as Customizing, it will generate a customizing request automatically when you will modify the table entries there.

if you tell your scenario it would be much easier to answer

0 Kudos
171

Hello Jey

If you have defined within the maintenance view that changes should be automatically recorded (for this 'C'-class Z-table) then you are done already.

As soon as you create, change or delete an entry the system will ask you for a customizing request if the table is client-dependent otherwise it will ask for a workbench request (for client-independent customizing).

Regards

Uwe

Former Member
0 Kudos
171

Hi,

I am developing a transaction there in which you can edit the customized objects, in that case it should trigger a customized transport to record the changes.

Regards,

Jey