Hi Neel.
see IS BuiltIn-Services reference for further infomrations.
you can use pub.string:tokenize with space as a delimiter and then map first part to first name and second part to last name.
Another option might be to use a combination of substring with indexOf(" ").
I.e. substring(0, indexOf(" “)) and substring(indexOf(” ")+1)
Be aware that both these options only work when there is only one space in the full name.
When either first name or last name (or both) will contain spaces we will have to think further about other options.
Regards,
Holger
#webMethods#edi#Integration-Server-and-ESB