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

FM for DMEE configuration

former_member619913
Discoverer
0 Likes
1,236

How to write the abap code for exit function for DMEE configuration.

1 ACCEPTED SOLUTION
Read only

0 Likes
1,004

Hi, If you are taking about exit FM for DMEE nodes, then you can copy standard template FM "DMEE_EXIT_TEMPLATE" or "DMEE_EXIT_TEMPLATE_EXTEND_ABA". Difference between these two is second FM import parameters will have more data than the latter one.

within these FM importing parameters will have all required data. Based on your node type, you need to assign the result to exporting parameters(C_VALUE(char node) or N_VALUE(numeric node) or so on).

Just place breakpoint within this FM. you will get idea on how to build your logic.

1 REPLY 1
Read only

0 Likes
1,005

Hi, If you are taking about exit FM for DMEE nodes, then you can copy standard template FM "DMEE_EXIT_TEMPLATE" or "DMEE_EXIT_TEMPLATE_EXTEND_ABA". Difference between these two is second FM import parameters will have more data than the latter one.

within these FM importing parameters will have all required data. Based on your node type, you need to assign the result to exporting parameters(C_VALUE(char node) or N_VALUE(numeric node) or so on).

Just place breakpoint within this FM. you will get idea on how to build your logic.