Application Development and Automation Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only
19sandesht
Explorer
5,373






















DMEE_EXIT_TEMPLATE_EXTEND_ABA FM as exit code depending on the node Id.






CASE i_extension–node–node_id.
WHEN 'N_8559886880'. ""Condition On Node ID.
IF l_item–fpayp–dmbtr LT 200000.
l_item–fpayh–formz = 'NEFT'.
o_value = l_item–fpayh–formz.
c_value = l_item–fpayh–formz.
ELSE.
l_item–fpayh–formz = 'RTGS'.
o_value = l_item–fpayh–formz.
c_value = l_item–fpayh–formz.
ENDIF.
ENDCASE.




DMEE_EXIT_TEMPLATE FM as an exit for the individual node.
This is when you need to map just for one node or to avoid confusion every node is given seperate Exit as in FM.






IF l_item–fpayp–dmbtr LT 200000.
l_item–fpayh–formz = 'NEFT'.
o_value = l_item–fpayh–formz.
c_value = l_item–fpayh–formz.
ENDIF.




FI_PAYMEDIUM_SAMPLE_21 FM to change Filename











Thank you for reading. Stay tuned!


1 Comment
marcela_martinez
Participant
0 Kudos
Hi Snadesh,

Thanks so much for your valuable post.

I have a requirement to "split" a DMEE file record in 2 different ones. Do you know if this is possible?

Thanks in advance and best regards.

Marce.