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

TCODE for creating/updating ADRC table

Former Member
0 Likes
42,626

Can anyone tell me the transaction code for updating ADRC table.

NOTE: This table cannot be updated using SM30.

Thanks in advance

Rewarding Points Assured.

Regards,

Baburaj

7 REPLIES 7
Read only

Former Member
0 Likes
13,683

Hi

I think there isn't only one transaction, but yuo should change ADRC table (so address data) by transaction to manage your object.

For example if you want to change address data of customer you should use XD02, XK02 for vendor and so...

Max

P.S.: you can change the address data by BAPI as BAPI_ADDRESSORG_CHANGE but you need to create a program.

Message was edited by: max bianchi

Read only

rainer_hbenthal
Active Contributor
0 Likes
13,683

Are you sure that your posting in a forum about ABAP programming is well placed?

Read only

Former Member
0 Likes
13,683

Check this

Debug SE16 to allow record changes

If you are not authorised to change table entries or the table has been create without table maintenance

allowed (all SAP tables), you can still change entries via data browser (SE16) by means of debugging. The

process is as follows:

1. Display record entries for desired table via SE16 or SE11.

2. Select record which requires updating by highlighting it and pressing the display icon (glasses, F7).

3. Type /h in command box and press enter.

4. Now press enter again and you should enter debugging mode

5. Change the value of code from ‘SHOW’ to ‘EDIT’, remember to press the ‘change field contents’

icon (pencil) in-order to store new value.

6. Press F8 (execute) to leave debug.

7. You should now have change access to the selected record.

8. Hit ‘SAVE’ to save any changes.

9. Remember there is a reason why you can’t do this without debugging it, one reason being that it could

introduce inconsistencies in the table data.

Read only

0 Likes
13,683

To continue on Max's point, you should NOT use any t-code that breaks the referential integrity of the SAP data model like SM30, SE16 (and debug to "trick" it).

The ADRC table has some of your company's MOST IMPORTANT master data. Changing this table directly, could result in serious data loss b/c of foreign key relationships, etc.

Changes to this table NEED to be performed through standard SAP business t-codes like: XD02, VD05, etc.

Read only

0 Likes
13,683

Is there a t-cde to change delivery addresses for address group ME02, one time? We can use t-code MEAN to delete delivery addresses for address group ME01, master data, but do not know how to delete one time. We are on 620 (4.7)

Read only

Former Member
0 Likes
13,683

Hi Babu,

If u r using any older releases ,

Just try with 'SANS1 '

-


Use Addr_Insert Fn module .

For insertion of record use XD01 and for updation use, XD02.

Regards,

J

Read only

simaster
Discoverer
13,683

Hi all,

I had the same issue -- wasted an hour in searches how to change ADRC data for a company code. Here is the way I found (s4hana 1809):

SM30 -> V_T001 -> maintain

Select your CC -> GoTo -> Address

Bingo!

For your location language just click on International Versions button and choose your language.

Hope it helps.