//Added By Amol S. on 30-11-2023 [To add validation for pay_int_service should be a valid service code (it should be defined in system events table).] - START
BaseLogger.log("3",null,null,"Value of pay_int_service : "+SeviceCode);
booleanisValid=checkPayIntService(SeviceCode);
BaseLogger.log("3",null,null,"Value of isValid : "+isValid);
if(!isValid)
{
errCode="VLDSRVCE";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
//Added By Amol S. on 30-11-2023 [To add validation for pay_int_service should be a valid service code (it should be defined in system events table).] - End
//Added By Amol S. on 30-11-2023 [To add validation for event_notify_email that Email ID entered should be a valid email ID.] - START