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

Adding New field in a Table

Former Member
0 Likes
1,089

Hello Experts,

I have created a table. I have 3 fields in that table and i hav used that table for 2 months. Now i have added a

new field( FLAG Field ) values will be 'X' or Blank. Now when i am using a select query on this table in where condition if i am using Flag = ' ' , it is not considering the old records it is fetching values from the day i have added the new field, Kindly provide me a solution

Thanks & Regards,

Kams.

Hello Experts,

I have created a table. I have 3 fields in that table and i hav used that table for 2 months. Now i have added a

new field( FLAG Field ) values will be 'X' or Blank. Now when i am using a select query on this table in where condition if i am using Flag = ' ' , it is not considering the old records it is fetching values from the day i have added the new field, Kindly provide me a solution

Thanks & Regards,

Kams.

8 REPLIES 8
Read only

Former Member
0 Likes
1,055

Hi,

then you forgot to set the INITIALIIZE flag for your new field in SE11.

Regards,

Klaus

Read only

Former Member
0 Likes
1,055

Hi,

After extending the table, SE14 must be executed as well. Have you executed the SE14 ?

Read only

0 Likes
1,055

And be sure to check "save data".

Rob

Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
1,055

Kindly use Se14 to to adjust your table and save your all records.

Thanks

Nabheet

Read only

Former Member
0 Likes
1,055

U can do it by 2 ways...

1) To manually enter the flag field values

2) Use Se14 to to adjust your table and save your all records

Read only

Former Member
0 Likes
1,055

hi,

for this go in se14 database utility or make a bdc program and update ur flag.

Sulabh

Read only

Former Member
0 Likes
1,055

Hi You have to activate and adjust the data base table from the utility menu.

Regards

Mona

Read only

jayanthi_jayaraman
Active Contributor
0 Likes
1,055

Hi,

For fetching old values, you should use flag is null. But new blank values will be fetched flag = ''. So use both flag = ' ' or flag is null.