cancel
Showing results for 
Search instead for 
Did you mean: 

Error while activating the scenario

Former Member
0 Kudos

Dear All,

When I am activating my scenario, its throwing the following error, plz suggest how this can be resolved:

Activation of the change list canceled

Check result for <b>Message Mapping cXML_PS_File_Mail |</b> urn:ukedi:orderrequest:webapp:

Starting compilation

Source code has syntax error: <b>D:/usr/sap/XD1/DVEBMGS00/j2ee/cluster/server0/./temp/classpath_resolver/Map255e3150d38611dbbd79001279934b36/source/com/sap/xi/tf/_cXML_PS_File_Mail_.java:360: cannot resolve symbol symbol : variable To

location: class com.sap.xi.tf._cXML_PS_File_Mail_

StringTokenizer st=new StringTokenizer(To,";");

^

1 error</b>

Warm Regards,

N.Jain

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi nishu,

could you explain your input and what you are expecting as output.

The string tokenizer has implemented in three ways:

StringTokenizer(String str)

StringTokenizer(String str, String delim)

StringTokenizer(String str, String delim, boolean returnDelims)

Please any of the above based on your requirement.

Hope I am clear.

Thanks and Regards,

Chandu....

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

Check you UDF.

it has the Error

checng accordingly

StringTokenizer(String str, String delim)

Is it To as a veriable ? which was defined as String?

Check or give your code ..

Regards

Chilla

Former Member
0 Kudos

nishu,

ur UDF has an error that is y ur not able to activate it.please correct the UDF . it should be "To"

Sreeram Reddy

Former Member
0 Kudos

Hi,

There is a syntax error in your UDF

StringTokenizer st=new StringTokenizer(To,";");

Change this line to

StringTokenizer st=new StringTokenizer(<b>"To"</b>,";");

Regards,

Jai Shankar