Skip to Content
Technical Articles
Author's profile photo Sandesh Thakre

DME Exits.

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!

Assigned Tags

      Be the first to leave a comment
      You must be Logged on to comment or reply to a post.