cancel
Showing results for 
Search instead for 
Did you mean: 

UDF

praveenreddy_bk
Participant
0 Kudos

Example my Purchase order number is like this :

1) KL0000098654------ I need to Convert 10 digit Purchase order

First two Alphabetical Must be there I need to remove two Zeros of left side ( After Alphabetical ) .

2) If the purchase order number begins with the prefixes C, CB, D, F, H, I, K, KK, KN, KY, L, RM, Y, YC and T. The IDOC should not be posted to R3 Back end system.

Is there any Java code for this.

View Entire Topic
former_member193376
Active Contributor
0 Kudos

Hi

I am answering your first question.

1) KL0000098654------ I need to Convert 10 digit Purchase order

First two Alphabetical Must be there I need to remove two Zerosof left side ( After Alphabetical ) .

You write a UDF

input the idoc no

String a = String.valueOf(idoc_no);

String b,c,len, result;

len = idoc_no.length;

if (a != "")

{

b = a.substring(0,1); // am storing your first 2 char

c = a.substring(4,len); // am ignoring the 2 zeros and storing the no after the zero

result = b + c; // concatinating the first 2 char and remaining no without the 2 zero

return result

}

Hope this will help you.

Thanks

Saiyog