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

Functionality Of Function Modules

Former Member
0 Likes
940

Hi All!

Can any one tell me the functionality of these below mentioned function Modules and what are the parameters that need to be passed to them.

1.WFMC_MESSAGES_SELECT

2.WFMC_MESSAGES_EXTEND

3.WFMC_MESSAGES_PROCESS

Thanks and Regards

Sourabh

3 REPLIES 3
Read only

anversha_s
Active Contributor
0 Likes
772

hi sourabh,

chk this.

WFMC_MESSAGES_SELECT

example

tables : nase.

constants: appl like nase-kappl value 'V2'.

select-options:

rg_nacha for nase-nacha default '1',

rg_kschl for nase-kschl.

ranges: rg_objky for nast-objky.

data:

msgs_1 like msg0 occurs 100 with header line.

*-Fill Object Key

*-Execute fm

call function 'WFMC_MESSAGES_SELECT'

exporting

pi_application = appl

pi_processing = '1'

tables

ri_medium = rg_nacha

ri_type = rg_kschl

ri_object = rg_objky

tx_messages = msgs_1.

rgds

anver

if hlped mark points

Read only

0 Likes
772

hi,

WFMC_MESSAGES_PROCESS

triggers a print for the output type assigned to a

particular delivery.

CALL FUNCTION 'WFMC_MESSAGES_PROCESS'

EXPORTING

PI_DISPLAY_ID = 'NALIV2'

PI_NO_DIALOG = PM_VERDI

PI_VERMO = PM_VERMO

TABLES

TX_MESSAGES = MSGS

TX_DISPLAY = DISP.

Check out the program SD70AV2A. the FM "WFMC_MESSAGES_PROCESS" is used in this program.

rgds

anver

Message was edited by: Anversha s

Read only

Former Member
0 Likes
772

chk this thread for the first one