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: 

How to locate Function Module

Former Member
0 Kudos

Hi all,

I wanted to know how can i locate function module available for FI module. I wanted a function module to extract all gl accounts for open items on the given keydate.

thankx in advance.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi,

in SE37 search with some keywords like GLopen*

BKK_GL_ITEM_GET this function module is helpful for you

cheers,

sasi

5 REPLIES 5

Former Member
0 Kudos

hi,

in SE37 search with some keywords like GLopen*

BKK_GL_ITEM_GET this function module is helpful for you

cheers,

sasi

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

In SE37,F4 Help,restrict your search by entering FI-GL in Application Component.Then you can see all the related function modules.

Kindly reward points by clicking the star on the left of reply,if it helps.

andreas_mann3
Active Contributor
0 Kudos

Hi,

you can program it by yourselve:

SELECT (fld) FROM  bsis APPENDING  TABLE ztab
           WHERE  bukrs  = it01-bukrs
           AND    hkont  IN hkont
           AND    budat  le keydate.

regards Andreas

Former Member
0 Kudos

Try this

FIAA_GL_ACCOUNTS_GET..

Some other FMs releated to GL acc-->

FI_SPECIAL_GL_IND_PROPERTIES

FI_SPECIAL_GL_TRANSACT_CHECK

FI_SPECIAL_GL_TRANSACT_DATA

FI_EWU_APPEND_GL_BALANCE

FI_EWU_CHECK_GL_BALANCE

FI_EWU_GET_GL_BALANCE_CYEAR

FI_EWU_POST_GL_BALANCE

FI_EWU_RESET_GL_BALANCE

FI_EWU_SAVE_GL_BALANCE

Cheers

Award points if it helps you.

Former Member
0 Kudos

HI,

use this function module to get all items BAPI_GLX_GETDOCITEMS.

if you want to see more related to general ledger go to transactio 'bapi'.

Thanks

Ramesh