Oracle SOA 12c- BPEL namespace prefix xp20 can not be resolved

Recently I have faced a very strange issue during usage of BPEL xPath function that is used to transform input string to lowercase format. BPEL provides readymade string function(s) for string manipulation viz. lowercase, uppercase, trim, compare, concat..etc and few other as well. Now, in order to convert input string to lowercase, below xPath function is available to do so- Function: xp20:lower-case() Problem Statement After putting the input in above xPath function, the BPEL process compilation got failed with below error message- Error- namespace prefix xp20 can not be resolved JDeveloper - 12.1.3.0 SOA Suite- 12.1.3.0 Cause In order to use any namespace specific operation, this must be included in your namespace declaration. If missing, generally throws error of namespace resolution i.e. this is something like we are trying to use a namespace prefix whose reference is not available. There might be scenario when...