cancel
Showing results for 
Search instead for 
Did you mean: 

Convert Number to Sting in graphica mapping

Former Member
0 Kudos

Hi

I need to convert the number to string using graphical mapping in SAP PI 7.1

Please share the posts if any,

Regards

Blue

Edited by: hiddu4u on Nov 21, 2010 10:56 AM

Accepted Solutions (1)

Accepted Solutions (1)

rajasekhar_reddy14
Active Contributor
0 Kudos

Answers (2)

Answers (2)

samiullah_qureshi
Active Contributor
0 Kudos

You can do this using mapping UDF; UDF code will b something like this:-

 

int aInt = [input];    
String aString = Integer.toString(aInt);

Edited by: Samiullah Qureshi on Nov 22, 2010 9:41 AM

former_member518917
Participant
0 Kudos

Hi,

you can do like this.

int integer = 10;

String str = integer+"";

Ritu