Hello experts, I have a requirement where I need to call a UDF1 within another UDF in the same Function library . I have referred few blogs and I was able to achieve the functionality but none of the blogs mentioned about how to get the response back into the calling UDF .
For eg : I got the below code from one of the SDN member response ,it worked great but how to get the return value back into the calling UDF ?
_MM_ORDRSP05_to_OrderResp_ loc = new _MM_ORDRSP05_to_OrderResp_();
loc.UDF1(msgid, container);
Please advise .