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

tables

Former Member
0 Likes
375

if any one know how to add one field in predefine table(sap defined table) and what r the naming convantion we have to fallow for this..........

2 REPLIES 2
Read only

Former Member
0 Likes
345

Hi,

You can use append structure and can give the structue name ZAxxxxx and field name ZZxxxxx.

Hope this will help.

Regards,

Ferry Lianto

Read only

Former Member
0 Likes
345

Hi,

The following are the ways to include new fields in SAP Standard tables.

Customizing Includes


A Customizing include is a structure that satisfies a special naming convention. The name of a Customizing include begins with ‘CI_’ and the include is in the customer namespace.

If enhancements are already planned in the R/3 standard using customer-specific fields, such Customizing includes are included. in the corresponding standard table or standard structure. The Customizing include (that is the definition of the structure itself) is usually first created in the customer system and filled with fields by special Customizing transactions.

http://help.sap.com/saphelp_47x200/helpdata/en/cf/21eb54446011d189700000e8322d00/content.htm

Append Structures

Append structures are used for enhancements that are not included in the standard. This includes special developments, country versions and adding customer fields to any tables or structures.

An append structure is a structure that is assigned to exactly one table or structure. There can be more than one append structure for a table or structure.

The following enhancements can be made to a table or structure TAB with an append structure:

· Insert new fields in TAB,

· Define foreign keys for fields of TAB that already exist,

· Attach search helps to fields of TAB that already exist,

http://help.sap.com/saphelp_47x200/helpdata/en/cf/21eb61446011d189700000e8322d00/content.htm

Regards,

Vara