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

Naming Convention for dialog Programming

Former Member
0 Likes
1,836

hi,

Is there any naming convention for the dialog programming except Z or Y.

Plz help

Harpreet

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,330

yes....

For Dialog module:

length 30

Y, Z, RP_9, RH_INFOTYP_P9

check the link

<a href="http://help.sap.com/saphelp_nw04/helpdata/en/2a/6b0b1f547a11d189600000e829fbbd/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/2a/6b0b1f547a11d189600000e829fbbd/content.htm</a>

hi,

Is there any naming convention for the dialog programming except Z or Y.

Plz help

Harpreet

7 REPLIES 7
Read only

Former Member
0 Likes
1,330

Hi Harpreet,

The naming convention Z and Y is for name of the reports, FM and other programs.

U cannot use any other alphabet for the name of program.

Rgds,

Prakashsingh

Read only

0 Likes
1,330

no u can't use .

example--

go to se80--->

program name--->sapmzmukesh

create.

Read only

Former Member
0 Likes
1,331

yes....

For Dialog module:

length 30

Y, Z, RP_9, RH_INFOTYP_P9

check the link

<a href="http://help.sap.com/saphelp_nw04/helpdata/en/2a/6b0b1f547a11d189600000e829fbbd/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/2a/6b0b1f547a11d189600000e829fbbd/content.htm</a>

Read only

Former Member
0 Likes
1,330

Hi,

SAP recommends using sapmz--- as naming convention

for dialog program.

Regards ,

Amole

Read only

Former Member
0 Likes
1,330

When you create an online program, its name must begin with “SAPM” and then either a “Y” or “Z”. The last characters in the program “SAPMzaaa...” or “SAPMyaaa...” can be letters or numbers. For our example, we will create a program named “SAPMYOP_PLAYER_AVG”.

Any other name is not possible.

Regards,

Subhasish

Read only

Former Member
0 Likes
1,330

The name of a module pool program starts with SAP. Any custom program will start with SAPZ* or SAPY*.

The other includes will be created by SAP, you will be prompted for the same when you create the program.

Hope this helps.

Sudha

Read only

0 Likes
1,330

Hi,

Before doing dialogue programing.

1) Create function group (Ex: Z_XXX_FG, program name willl be SAPLZ_XXX_FG)

2) Create a Screen (Ex: 0100)

3) If you are creating Module under PBO - Create it as LZ_XXX_FG_O01(After FG_, O for PBO,01 indicates Screen 1, for screen 2, LZ_XXX_FG_O02 etcc..)

4) If you are creating Module under PAI - Create it as LZ_XXX_FG_I01 (After FG_, I for PAI,01 indicates Screen 1, for screen 2, LZ_XXX_FG_I02 etcc..))

5) Any forms related to PBO/PAI, maintain it in separate Include - LZ_XXX_FG_01_Forms.

If you create like above, in function group it will looks like

LZ_XXX_FG_O01

LZ_XXX_FG_I01

LZ_XXX_FG_01_FORMS

Thanks