cancel
Showing results for 
Search instead for 
Did you mean: 

Getting SystemId in UDF

NikiScaglione
Product and Topic Expert
Product and Topic Expert
0 Kudos

HI,

I need getting the SystemId in a UDF function using java mapping. I'm looking the Interface StreamTransformationConstants but it doesn't help me.

Can you help me, please?

Thank

Niki

Accepted Solutions (1)

Accepted Solutions (1)

prabhu_s2
Active Contributor
0 Kudos

chec this link:

Answers (2)

Answers (2)

former_member335553
Active Contributor
0 Kudos

Hi

Refer this thread

Former Member
0 Kudos

Hi,

In your UDF try to use the below code

String user_login_id = System.getProperty("user.name");

return user_login_id.substring(0,3);

Regards

Chilla