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: 

C14A_POPUP_LIST_DISPLAY

Former Member
0 Kudos

hi all,

how to use function module .. please send code

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Before using any functionmodule make urself aware of the

mandatory parameters which has to be passes in that

function module .

The transaction for seeing a function modue is SE37.

There you can see the function module documentation to have

an undstanding of the same and if its not available goto the tabs

import , export tables to know abt the mandatory parameters.

Once it is done, and you want to use this FM in your report,

there is a push button 'Pattern' on the application toolbar.

Hit it and you would get a popup.Enter the name of FM and

it would be called on the report screen.

Uncomment the required lines and go on to use the functionality for

the same.

Hope it helps

Sumit

2 REPLIES 2

Former Member
0 Kudos

Hi,

Before using any functionmodule make urself aware of the

mandatory parameters which has to be passes in that

function module .

The transaction for seeing a function modue is SE37.

There you can see the function module documentation to have

an undstanding of the same and if its not available goto the tabs

import , export tables to know abt the mandatory parameters.

Once it is done, and you want to use this FM in your report,

there is a push button 'Pattern' on the application toolbar.

Hit it and you would get a popup.Enter the name of FM and

it would be called on the report screen.

Uncomment the required lines and go on to use the functionality for

the same.

Hope it helps

Sumit

0 Kudos

you can click on where used list for any FM to see examples.

CALL FUNCTION 'C14A_POPUP_LIST_DISPLAY'
    EXPORTING
      i_callback            = 'L_COLOR_LEGEND_CONTENTS'
      i_callback_program    = 'SAPLCVDB'
      i_title               = 'Symbollegende'(111)
      i_col                 = 10
      i_row                 = 3
      i_width               = 40
      i_height              = 8
    EXCEPTIONS
      no_callback_specified = 1
      OTHERS                = 2.