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

How to create Function Pool

Former Member
0 Likes
5,072

Hi,

I need to know how to create function pool .

Thanks,

SS

8 REPLIES 8
Read only

Former Member
0 Likes
2,084

Hi,

If you create a new function group..Automatically it creates a function pool..

Go to SE37..

IN the menu..choose..

GOTO -> FUNCTION GROUP -> CREATE GROUP.

Thanks,

Naren

Read only

Former Member
0 Likes
2,084

Hi,

The FUNCTION-POOL statement is equivalent to the REPORT statement and introduces a function group.

In general, a programmer never writes this statement himself. When a function group is created, the system automatically generates this statement in a standard include.

The use of the statement is primarily to inform the ABAP system that the current program is a function group.

We find such a terminoloty in case of Type Groups as well. If you need to include a type group in your program, you use the TYPE-POOLS statement.

For Example:

Go se80...enter the function group name and hit enter..tree will be listed ..you will righ-click on the function group name and choose copy.. It will ask you what function modules you want to copy, just copy all and make sure to following the naming convention, start with Z_ then you can copy and modify any includes that you need.

standar function-pool:SAPLKAEP

Regards,

Priyanka.

Read only

Former Member
0 Likes
2,084

Jus create a function group.... the statement FUNCTION-POOL declares a program in which you can define function modules....so FUNCTION-POOL automatically gets created when u create a function group....

goto SE37, create, function group...

Regards,

Pavan P

Read only

Former Member
0 Likes
2,084

Hi,

Use link

Tz. SE37--


> goto
>function group
--


> create function group.

Regards

Gaurav

Read only

Former Member
0 Likes
2,084

Hi,

Functional Pools

Function pools are the only programs that can contain function modules. They are not maintained in the standard ABAP Editor, but in the Function Builder instead. Function pools and their function modules deliver reusable functions to other programs. Besides that, function pools have the same features as module pools. In particular, they can contain Dynpros and dialog modules. Therefore, function pools are the first choice if you want to encapsulate Dynpro-based user dialogs (note that class pools do not support Dynpros). An application program or a class can call a function module, which then calls one of the function pool’s Dynpros via CALL SCREEN.

regards,

keerthi

Read only

Former Member
0 Likes
2,083

go to se80 chose function group from list box.

now in the below input field give the fn grp name you want to create with Z. now press enter it will ask for creating the fn group just click to create it and activate it

that is your fn pool.

regards

shiba dutta

Read only

Former Member
0 Likes
2,083

Hi

You can create function group in 2 ways.

1. Tr. Se37-->Goto>Function group--->Create Group.

2. Tr. Se80-->Right click on object name->Cretae---->Function Group

Thanks

Sasmita

Read only

Former Member
0 Likes
2,083

This message was moderated.