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: 

Update TKAF table

tarangini_katta
Active Contributor
0 Kudos

Hi All,

I have Values in table 'TKAF'.

I have table entries as following.

APPLC---FBRG.

FIELNM .---CURTP

DIMPR -


'0'.

I want to change the DIMPR value to '1'.

How can i update this table through customzing or thorugh any transaction.

Please let me know how can i update this table with out writing any code.

Thanks,

6 REPLIES 6

Former Member
0 Kudos

Use the following in a program:

UPDATE TKAF SET  DIMPR = '1 WHERE   APPLC = 'FBRG' and FIENM = 'CURTP'.

regards,

Gurpreet

Former Member
0 Kudos

Hi,

Go through the following steps:

1. Goto the contents of the table.

2. Check the checkbox of that particular record you want to change.

3. In the Menu bar click on Table Entry -> Change.

4.Now do the desired changes and save.

Hope this will help you.

Former Member
0 Kudos

Hi,

If you have access to edit or change in Debugging...it is easy to change...

Goto table entries screen by providing the selection screen values, here double click on the row which you want to edit, then u ill see the Table display screen, here pass /h on command box and then press enter 2 times...

now you will be in ABAP Debugger, then check the CODE value in the field names, by defualt it will have a value 'SHOW', change it to 'EDIT' and press F8. now in this screen u can edit the value of the required field...

Hope its clear...

Regards,

Pavan

Former Member
0 Kudos

GO to SM30. And change values from there . If allowed.......

Former Member
0 Kudos

Hi,

To update the data of any table, go to transaction SE16N, type u201C&SAP_EDITu201D. It will activate SAP editing function.

---

Go to table and press Ctrl+ shift + F10 where you will go to table entries. Click on F8 (execute).

And then select the entries that you want to edit by selecting the checkbox and goto menu Table entry - > select change. There you edit and save the entries.

Amresh

tarangini_katta
Active Contributor
0 Kudos

Hi All,

As i mentioned in my question previuosly.

I dont't want to update the table through writing program or through SE16N or changing the table directly or through SM30.

I want to update it through Customization(SPRO).Is there any possiablitiy this table updation through customizing.

Thanks