Application Development 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: 
19sandesht
Explorer






















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