Hi Neha,
The code usage for substring is incorrect so you are getting the StringIndexOutOfBoundsException. The second parameter is the endIndex not the length of the substring. So your code should be changed to the following and then it should work:
try{ DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION); DynamicConfigurationKey key1 = DynamicConfigurationKey.create("_http://sap.com/xi/XI/System/File","FileName"); DynamicConfigurationKey key2 = DynamicConfigurationKey.create("_http://sap.com/xi/XI/System/File","SourceFileTimestamp"); String fname= conf.get(key1); String timestamp= conf.get(key2); String Str= timestamp; String date= Str.substring(0, 8); String year= date.substring(0, 4); String month= date.substring(4, 6); String day= date.substring(6, 8); String time= Str.substring(9, 15); String hours= time.substring(0, 2); String mins= time.substring(2, 4); String secs= time.substring(4, 6); String date1= month+" / "+day+" / "+year; String time1= hours+" : "+mins+" : "+secs; String filename= "EBS File with file name " + fname + " is sucessfully received to SAP @ " +date1+" "+time1; return "Dear Sir / Madam," +" \n " +" \n "+filename; } catch(Exception e) { String exception = e.toString(); return exception; }
I would mention however as others have that there are simpler ways of parsing a date formatted string but this code should work for you.
Regards,
Ryan Crosby