cancel
Showing results for 
Search instead for 
Did you mean: 

Can we use Inner Class in UDF in Sap pi

former_member290264
Participant
0 Kudos

Hello Experts,

I am developing one UDF in SAP PI.

i have a condition like:

public void Abc(String[] p, String[] q, String[] r, ResultList u, ResultList v, ResultList w, ResultList h,){

// some code..

public void xyz(){

// some code

}

}

can I use InnerClass for method xyz???

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member186851
Active Contributor

Hello Ravi,

I think this is not possible,you can try approach like in the below link

https://blogs.sap.com/2006/01/26/throwing-smart-exceptions-in-xi-graphical-mapping/

former_member290264
Participant
0 Kudos

Hi Raghuraman,

can you help me that How can I use Method inside a Method?