Hi experts,
I have function module which is used in one of the function modules that i need to change, but is never called anywhere in the FM. If I want to use this FM, what values should i have to pass as the I am unaware of the DMEE_TREETYPE / DMEE_TREEID data types.
Please help me. The FM is below.
FUNCTION Z_GET_SGTXT.
*"----
""Local Interface:
*" IMPORTING
*" VALUE(I_TREE_TYPE) TYPE DMEE_TREETYPE
*" VALUE(I_TREE_ID) TYPE DMEE_TREEID
*" VALUE(I_ITEM)
*" VALUE(I_PARAM)
*" VALUE(I_UPARAM)
*" EXPORTING
*" REFERENCE(O_VALUE)
*" REFERENCE(C_VALUE)
*" REFERENCE(N_VALUE)
*" REFERENCE(P_VALUE)
*" TABLES
*" I_TAB
*"----
Template function module --------------------------------------------*
data: lt_tab type table of DMEE_PAYM_IF_TAB.
data: ls_item type DMEE_PAYM_IF_TYPE,
ls_tab type DMEE_PAYM_IF_TAB.
ls_item = i_item.
n_value = ls_item-fpayp-sgtxt+0(30).
ENDFUNCTION.
Thanks
Asha