‎2006 Sep 19 12:28 PM
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
‎2006 Sep 19 12:30 PM
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
‎2006 Sep 19 12:32 PM
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
‎2006 Sep 19 12:33 PM