Diversity Without BORDERS


* Creative solutions with a positive impact
* Solutions that meet timelines and current needs
* Direct contact with people that provide professional service
* Customized service geared to individual needs

Financial Advisor

Deadline: 
June 14, 2008
Company: 
Scotiabank Group

As one of Canada’s Top 50 Employers for the fourth consecutive year, Scotiabank places great importance on recognizing and rewarding strong performance. We offer room for advancement, a stimulating work environment and the resources to help you make the most of your career. Together, we continue to make Scotiabank a great place to work.

Our Domestic Banking division provides a comprehensive range of banking and investment services to almost 7 million retail, wealth management, small business and commercial customers across Canada. Our multi-channel domestic delivery network includes more than 970 branches, close to 2,750 ABMs, Internet, telephone and wireless banking.

POSITION SUMMARY:

As a member of the Retail Branch sales team, you are responsible for contributing to the team's overall success by achieving negotiated personal sales and sales activity goals through the identification and satisfaction of customer needs Your primary role will be to build and maintain an assigned portfolio of customers with significant investable assets, proactively mining and cross-selling customized financial solutions and conducting personal lifestyle planning focusing on investment opportunities. Along with the Bank’s retail investment products, you will also be responsible for promoting and selling lending and deposit products and services and have sound risk analysis techniques and credit adjudication judgment.

QUALIFICATIONS:

  • You have a thorough knowledge of customer life cycle needs and current economic and political events, retail investment, retail lending and deposit service product features and benefits.
  • You are a strong relationship builder and communicator with demonstrated flexibility in adapting to a wide variety of tasks and functions.
  • You enjoy meeting people and are proficient at collaborating with others.
  • You have previous financial planning experience and possess sound knowledge of the local market where you have built up your contacts.

EDUCATION AND ACCREDITATIONS:

  • You have a University or College degree/diploma.
  • You are required to have successfully completed a qualifying course of study that will enable registration with the provincial securities commission to obtain a license to sell mutual funds.
  • You have achieved the financial planning proficiency standard in the province.

The Scotiabank Group is an equal opportunity employer and welcomes applications from all interested parties. We thank you for your interest, however, only those candidates selected for an interview will be contacted. No agencies please.

Apply: https://recruiter.kenexa.com/scotiabank/cc/CCJobResultsAction.ss?command=ViewJobDetails&job_REQUISITION_NUMBER=22933

var reformattingAllowed = true;
function selectClick(parentSelect, childSelect, optionsArray) {
var i = parentSelect.selectedIndex;
var k = 0;
if (i == -1) {
childSelect.options.length = 1;
childSelect.options[0].text = "--Select--";
childSelect.options[0].value = "";
} else if(optionsArray[i] != null && childSelect) {
var arrayLen = optionsArray[i].length;
if (arrayLen == 0) {
childSelect.length = 0;
return;
}
var lasrArrayValue = optionsArray[i][arrayLen-1][1];
if (lasrArrayValue == "ENABLE_LARGE_DROPDOWN") {
if (document.form.elements[childSelect.name + '_remotetext']) {
document.form.elements[childSelect.name + '_remotetext'].value = "";
}
if (document.form.elements['LOOKUP_MULTI_DROPDOWN_' + childSelect.name]) {
document.form.elements['LOOKUP_MULTI_DROPDOWN_' + childSelect.name].length = 0;
}
if (childSelect.options[0].value != "") {
childSelect.length = 0;
} else {
childSelect.length = 1;
}
if (document.getElementById) {
showLargeDropDownField(childSelect.name, "true");
}
childSelect.options[arrayLen-1] = null;
childSelect.options.length = optionsArray[i].length - 1;
} else {
if (document.form.elements[childSelect.name + '_remotetext']) {
document.form.elements[childSelect.name + '_remotetext'].value = "";
}
if (document.form.elements['LOOKUP_MULTI_DROPDOWN_' + childSelect.name]) {
document.form.elements['LOOKUP_MULTI_DROPDOWN_' + childSelect.name].length = 0;
}
childSelect.options.length = optionsArray[i].length;
for( var j=k; (j < optionsArray[i].length+k) && (optionsArray[i].length > 0); j++ ) {
childSelect.options[j].text = optionsArray[i][j-k][1];
childSelect.options[j].value = optionsArray[i][j-k][0];
}
if (document.getElementById) {
showLargeDropDownField(childSelect.name, "false");
}
}
if (childSelect && childSelect.selectedIndex) {
childSelect.selectedIndex = 0;
}
}
}
//Added for fixing the Bug 5673
String.prototype.trim = function()
{
return this.replace(/(^\s*)|(\s*$)/g, "");
}
//Added for fixing the Bug 5673
function showLargeDropDownField(postID, isVisible) {
var divPostID = postID + "_DIV_AFFIX";
if (document.getElementById(divPostID)) {
if (isVisible == "true" || isVisible == true) {
document.getElementById(divPostID).style.visibility = "visible";
for (var i=1; i<=4; i++) {
if (document.getElementById(divPostID + i)) {
document.getElementById(divPostID + i).style.visibility = "visible";
}
}
} else {
document.getElementById(divPostID).style.visibility = "hidden";
for (var i=1; i<=4; i++) {
if (document.getElementById(divPostID + i)) {
document.getElementById(divPostID + i).style.visibility = "hidden";
}
}
}
}
}
function checkSubmitReformatting() { // check reformatting before submitting
{return true;}
return false;
}
function checkCanadaZip(val)
{
var re;
var result;
re = /[a-zA-Z]\d[a-zA-Z]\s\d[a-zA-Z]\d$/;
result = val.match(re);
if(result==null)
{
alert("Value must be of the form LNL NLN where L is A-Z (Capital only) and N is (0-9).");
return false;
}
else
{return val;}
}

// add and remove items from remote scripting multiple selection dropdown box
function lookup_AddOptions(fbox_name) {
var fbox = document.form.elements["LOOKUP_MULTI_DROPDOWN_" + fbox_name];
if (fbox.options.length == 0) {
alert("Please add to the list of available items by typing the first few letters in to the corresponding text box.");
} else if (fbox.selectedIndex == -1) {
alert("Please select one or more value(s) to add.");
} else {
var tbox = document.form.elements[fbox_name];
var arrTbox = new Array();
var arrLookup = new Array();
for (var i = 0; i < tbox.options.length; i++) {
if (tbox.options[i].value != "") {
arrLookup[tbox.options[i].text] = tbox.options[i].value;
arrTbox[i] = tbox.options[i].text;
}
}
var tLength = arrTbox.length;
for(var i = 0; i < fbox.options.length; i++) {
if (fbox.options[i].selected &&
fbox.options[i].value != "" &&
!arrLookup[fbox.options[i].text]
) {
arrLookup[fbox.options[i].text] = fbox.options[i].value;
arrTbox[tLength] = fbox.options[i].text;
tLength++;
}
}
arrTbox.sort();
tbox.length = 0;
for(var c = 0; c < arrTbox.length; c++) {
var no = new Option();
no.value = arrLookup[arrTbox[c]];
no.text = arrTbox[c];
tbox[c] = no;
}
lookup_SelectAll(fbox_name);
}
}
function lookup_RemoveOptions(fbox_name, first_option) {
var objselect = document.form.elements[fbox_name];
if (objselect.options.length == 1 &&
objselect.options[0].value == "" ){
alert("There are no items to remove from the search field.");
} else {
var arrFbox = new Array();
var arrLookup = new Array();
var oneOptionSelected = false;
var j=0;
for(i = 0; i < objselect.options.length; i++){
if(objselect.options[i].selected == false) {
arrLookup[j] = objselect.options[i].value;
arrFbox[j] = objselect.options[i].text;
j++;
}else{
oneOptionSelected = true;
}
}
if (oneOptionSelected == false) {
alert("Please select one or more item(s) to remove.");
} else {
objselect.options.length=0;
for(var c = 0; c < arrFbox.length; c++){
var no = new Option();
no.value = arrLookup[c];
no.text = arrFbox[c];
objselect.options[c] = no;
}
if (arrFbox.length == 0 && first_option != "") {
var no = new Option();
no.value = "";
no.text = first_option;
objselect.options[c] = no;
}
lookup_SelectAll(fbox_name);
}
}
}
function lookup_SelectAll(pList) {
var lSelect = document.form.elements[pList];
if (lSelect) {
for(var i = 0; i < lSelect.options.length; i++){
lSelect.options[i].selected = true;
}
}
}