‎2007 Mar 29 9:13 PM
Hi,
I am doing an outbound payment file using DMEE.
i need to convert amount to amount in text (string).
we have a function module SPELL_AMOUNT.
when i select the option exit module for the element is defined and use SPELL_AMOUNT Function module. after i perform chekc it is displaying error.
could any any guide me the total process of using EXIT modules in DMEE.
Regards,
Jeff
‎2007 Aug 01 1:29 PM
Your function module has to be built just like DMEE_EXIT_TEMPLATE_ABA
If you F1 on the Exit Module field in the source tab in the DMEE it will provide you with more information on how to use this FM
‎2007 Aug 01 2:06 PM
The DME exit functions all have the same standard interface - there are 4 fields for passing the value back to DME - one for each of the for possible types you can define the field as in the DME maintenance tree. The "C" field for Character type is how you need to pass bach the value.
Andrew
‎2008 Feb 25 4:15 PM
Got the same error but found out by debugging you have to use DMEE_EXIT_TEMPLATE as template.
The parameters has to go like this
VALUE(I_TREE_TYPE) TYPE DMEE_TREETYPE
VALUE(I_TREE_ID) TYPE DMEE_TREEID
and not like DMEE_EXIT_TEMPLATE_ABA parameters.
VALUE(I_TREE_TYPE) TYPE DMEE_TREETYPE_ABA
VALUE(I_TREE_ID) TYPE DMEE_TREEID_ABA