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

function module

Former Member
0 Likes
455

i am seing the attributes of a function module where it is also given the program as saplzvua

and the include as lzvisau04

what does this mean?

and moeover there are some parameeters declared in the tables in the fmodule as s_bldat what does this mean

3 REPLIES 3
Read only

Former Member
0 Likes
399

Hi,

s_bldat may be the declaration for document date.

Read only

Former Member
0 Likes
399

Hi,

Each function group is identified by a 4 character "GROUP ID". When the ID is given system creates following four things:

1.A Main program, whose name is system generated, saplXXXX, where XXXX is the GROUP ID. In your case,ZVUA is the GROUP ID,

and thus "saplzvua" is the name of the main program

2.A TOP INCLUDE: whose name is also sytem generated,"lXXXXtop".

3.A UXX INCLUDE:the name of which is "lXXXXuxx".This is known as UXX and we are not allowed to modify UXX. The system automatically place an include in UXX for each function module that we create in that function group.

For first function module it is, lfgidu01 and so on.Thus in your case, "lzvisau04" is generated for the fourth function module under that function group.

4. A function module include

Revert back in case you have doubts regarding the points or you need more info on function module.

Regards,

Sana.

Read only

Former Member
0 Likes
399

thanks