‎2007 Mar 07 5:15 AM
‎2007 Mar 07 5:18 AM
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
‎2007 Mar 07 5:19 AM
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.
‎2007 Mar 07 5:22 AM
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
‎2007 Mar 07 5:26 AM
Hi,
Use link
Tz. SE37--
> create function group.
Regards
Gaurav
‎2007 Mar 07 5:29 AM
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 pools Dynpros via CALL SCREEN.
regards,
keerthi
‎2007 Mar 07 5:40 AM
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
‎2007 Mar 07 6:05 AM
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
‎2013 Mar 15 10:27 AM