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

customize table entry help

pram_1991
Participant
0 Likes
2,327

i have a customize table

tableT001- bukers field HAVE

next field is (table T001W-NAME1 field)

if i enter bukers field need to automatic insert plant name to next NAME1 field

my entry se11->utilities->table content->create entry.

what to do....

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,892

Don't replicate data already in the system, define your customizing z-table with primary key and required fields only, no 'text' or 'read-only' field from any other tables!

  • Use foreign keys relation to link the fields of your table with (standard) tables like T001 (bukrs) or T001W (werks)
  • Create a maintenance view from your table and related standard tables, and declare fields (like T001-BUTXT or T001W-NAME1) of those tables as read-only (provided for information, visual check).
  • Create the maintenance dialog from this view

Hints (for 'student')

  • Don't confuse T001, T001K and T001W. In some cases, consider T001K to link T001 and T001W. Try to analyze the relations between those tables with SE11 ... and SPRO.
  • You could look at

    Extended Table Maintenance Events

    but not for this kind of case.
4 REPLIES 4
Read only

JL23
Active Contributor
1,892

You should not maintain values in the company code table using SE11, SAP has a customizing activity in its IMG for the plant assignment to to the company. Kindly approach your local Finance or MM consultant if you can't find it using the binocular button when you are in SPRO

Read only

mangesh_parihar
Explorer
1,892

Create Table Maintenance for the custom table and add required event.

Read only

0 Likes
1,892

message me

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,893

Don't replicate data already in the system, define your customizing z-table with primary key and required fields only, no 'text' or 'read-only' field from any other tables!

  • Use foreign keys relation to link the fields of your table with (standard) tables like T001 (bukrs) or T001W (werks)
  • Create a maintenance view from your table and related standard tables, and declare fields (like T001-BUTXT or T001W-NAME1) of those tables as read-only (provided for information, visual check).
  • Create the maintenance dialog from this view

Hints (for 'student')

  • Don't confuse T001, T001K and T001W. In some cases, consider T001K to link T001 and T001W. Try to analyze the relations between those tables with SE11 ... and SPRO.
  • You could look at

    Extended Table Maintenance Events

    but not for this kind of case.