cancel
Showing results for 
Search instead for 
Did you mean: 

difference between Simple and Advance UDF

Former Member
0 Kudos

Hi,

Could you please help me what is the Defference between Simple and Advanced User Defined Functions.

Thanks and Regards,

Nag.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Nag,

Here is the Information for your request as follows.

<u>1. Simple UserDefined Function:</u>

Simple functions, which can process individual field input values for each function call. Simple functions, therefore, expect strings as input values and return a string.

<u>2. Advanced User Defined Function:</u>

Advanced functions, which can process non–single string field input values for each function call. You can pass either all field values of a context or the whole queue for the field in an array when calling the function. Each input field is passed as an array of String. Returned values are stored in a String array, ResultList.

Cheers,

AshokKumar.

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Nagammaiah,

There are 2 types of UDF's....

1)Simple UDF....can process individual field input values for each function call

2)Advanced....can process multiple field input values for each function call

Pls check this link

http://help.sap.com/saphelp_nw2004s/helpdata/en/d9/718e40496f6f1de10000000a1550b0/content.htm

Regards,

Ram

henrique_pinto
Active Contributor
0 Kudos

Simple UDFs are UDFs of type Value, where you manipulate only one value (input is one String).

Advanced UDFs are of types Context or Queue, where you manipulate many values (input is an array of Strings).

Regards,

Henrique.