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

DMEE EXIT MODULE

Former Member
0 Likes
1,731

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

3 REPLIES 3
Read only

Former Member
0 Likes
733

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

Read only

Former Member
0 Likes
733

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

Read only

Former Member
0 Likes
733

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