‎2019 Jul 16 4:58 PM
How to write the abap code for exit function for DMEE configuration.
‎2019 Jul 16 6:14 PM
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.
‎2019 Jul 16 6:14 PM
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.