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: 

Is there naming conventions for variables, itabs?

Former Member
0 Kudos

Hi!

Is there an ad hoc naming convention standard for writing ABAP programs?

What prefixes, suffixes, etc. I should use when defining selection options, variables, internal tables, etc.

Thank you!

3 REPLIES 3

Former Member
0 Kudos

Hi

there are coding standards for coding

it is agreement or understanding between the client and the company to follow the declarations and naming conventions

Regards

Shiva

0 Kudos

>

> Hi

>

> there are coding standards for coding

>

> it is agreement or understanding between the client and the company to follow the declarations and naming conventions

>

>

>

> Regards

> Shiva

How about from SAP AG themselves, do they have or released some tips regarding this? _

Former Member
0 Kudos

Hi,

We have to follow the naming conventions according to the client's coding standards.

For example

My present client.

I am following the conventions as follows:

Variables: v_variablename,

Constants: c_contant,

Select-options: S_selopt,

Internal tables: T_

Work Areas: K_

Etc.

Reward me if it is useful.