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

I append some fields ztable

Former Member
0 Likes
474

I append some fields in my ztable, the fields in the table already populated data,how to insert the data to the appended fields for the earlier records in the ztable.

rewards is dr

thnks.

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
453

Write a program to fill the new fields.

If you can do a program without parameter and using the option CLIENT SPECIFIED, you can put this program in the transport request with type R3TR XPRA which upgrade the ztable.

You should have

R3TR TABL <ztable>

R3TR PROG <zprogram>

R3TR XPRA <zprogram>

in the request, so when transporting, you insure the program is executed.

Regards

4 REPLIES 4
Read only

RaymondGiuseppi
Active Contributor
0 Likes
454

Write a program to fill the new fields.

If you can do a program without parameter and using the option CLIENT SPECIFIED, you can put this program in the transport request with type R3TR XPRA which upgrade the ztable.

You should have

R3TR TABL <ztable>

R3TR PROG <zprogram>

R3TR XPRA <zprogram>

in the request, so when transporting, you insure the program is executed.

Regards

Read only

Former Member
0 Likes
453

Hi,

You can create table maintenance generator or write custom program to update new fields.

Regards,

Ferry Lianto

Read only

arun_purohit
Participant
0 Likes
453

Hi thiru

U can populate new filed of u r table using

command "Modify"

with this command in loop u may b able to add values in new field

write modify in ABAP editor n press F1 on for more.......

Read only

Former Member
0 Likes
453

thnks