Skip to main content

What, Exactly, Is Business Development?

“I do Business Development.”

Few times in history have more ambiguous words been spoken.  Ask ten “VPs of Business Development” or similarly business card-ed folks what is business development, and you’re like to get just as many answers.

“Business development is sales,” some will say, concisely.

“Business development is partnerships,” others will say, vaguely.

“Business development is hustling,” the startup folks will say, evasively.

The assortment of varied and often contradictory responses to the basic question of “what, exactly, is business development” reminds me of the way physicists seek to explain what, exactly, is the universe.  With conflicting theories on the nature of black holes and bosons, the ultimate goal for those scientists is a Grand Unified Theory, a single definition that can elegantly explain how the universe itself operates at every level.

Lacking any concise explanation of what business development is all about; I sought to unite the varied forces of business development into one comprehensive framework. And eureka, for I have found it - the Grand Unified Theory of business development:

Business development is the creation of long-term value for an organization from customers, markets, and relationships.

There is elegance in simplicity, but perhaps this definition leaves you wanting more.  At its heart, business development is all about figuring out how the interactions of those forces combine together to create opportunities for growth.  But a theorem requires a proper proof, so let’s break that statement down:


Long-Term Value:
First, what do I mean by “long-term value?”  In its simplest form, “value” is cash, money, the lifeblood of any business (but it can also be access, prestige, or anything else a company seeks in order to grow).  And there are plenty of ways to make a quick buck for you or your company.  But business development is not about get-rich-quick schemes and I-win-you-lose tactics that create value that’s gone tomorrow as easily as it came today.  It’s about creating opportunities for that value to persist over the long-term, to keep the floodgates open so that value can flow indefinitely.  Thinking about business development as a means to creating long-term value is the only true way to succeed in consistently growing an organization.

Customers:
The “customers” portion of the definition may be slightly more obvious – customers pay the bills.  They are the people who pay you for your products and services, and without them you won’t have any business to develop.  But not everyone is a natural customer for your business. Maybe your product doesn’t have the features I’m looking for.  Maybe your product is perfect, but I don’t even know your company sells it.  Or maybe you’re not reaching me because you’re not knocking on my door.

Markets:
That’s because customers “live” in specific markets.  One way to understand markets is by geography - if I only focus on selling in the U.S. but you reside in London,  then you are currently unavailable to me as a customer as I do not currently reach the European market.  But customers also "live" in markets that are defined by their demographics, lifestyles, and buying mindset.  Identifying opportunities to reach new customers by entering into new markets is one important gateway to unlocking long-term value.

Take for example the Pet Owners market.  The customers who live there, of course, are people who own cats, dogs, fish, etc.  Petco is a company that clearly sells to customers who live in the Pet Owners market.  I, on the other hand, do not have a pet.  I don’t live in the Pet Owner market. So what if Petco wanted to sell something to me? Then they’d need to find a way to enter into a market where I do live.  For example, I have red-hair and pale skin and as such, I am prone to spontaneously combusting when exposed to the sun.  Therefore, one market that I "live" in is the Sunscreen Buyers’ market.  If Petco wanted to sell something to me, perhaps they can find a way to enter into that market by offering sunscreen, hats, or sun-reflecting aluminum foil suits.  Now, determining whether that’s a good idea or not for Petco to do so is a job for the business development team – and another story for another blog post.

Relationships:
And then there were “relationships.”  Just as the planets and stars rely on gravity to keep them in orbit, any successful business development effort relies on an underlying foundation of strong relationships.  Building, managing, and leveraging relationships that are based on trust, respect, and a mutual appreciation of each other's value is fundamental to enabling the flow of value for the long-term.  Relationships with partners, customers, employees, the press, etc. are all critical to the success of any business development effort and as such they demand a bold-faced spot in any comprehensive definition of the term.


So, is business development actually sales?  Is it partnerships?  Is it all about hustling? Well, frankly, yes.  It’s all of the above and as we’ll see in future posts, it’s much more.  It’s a complicated and fascinating discipline that deserves a clear understanding, so that we can marvel at the beauty of a well-done deal as much as the stars.

Comments

Popular posts from this blog

Sass

Sass: Here we are now introducing some other facts about the Sass Css Framework. Sass is the latest framework of css that is trending now very fast and it's professional, mature and powerful grade css version comparing to old versions. The Sass css is adapted by bootstrap also and other framework also so it is going fastly worldwide and many more industries are not moving to Sass. Basically Sass is the precompiled css version. It is help to load the page fastly then older css versions. Sass can be compiling through Gulp Js, Grunt and other compiler software also. It is latest version but still it is compatible with the all old versions of the css frameworks. It is working with the dynamic variables like for colors, spacing and different sections containers etc. Like, in this css framework the value of color is described once in variable but the variable can be used multiple time and in many files so if we want to change the color so we just have to change at one place...

Learn Angular 4 from scratch

Angular 4 is the latest version of AngularJs released in March 2017. The basic steps to accomplish our first Angular 4 hello world example. Here, we’ll simply create a component that passes the title from component to the view. 1. Install Angular CLI The Angular CLI is a command line interface that helps to scaffold and build angular apps in Node.js style. Also, it set up the angular 4 environments and will be helpful for us to work with angular apps like creating, running, etc. Now, install Angular-CLI. <code>npm install -g angular-cli</code> Once installation is done, just make sure that it’s installed by checking it’s version. <code>ng -v</code> 2. Install an Angular 4 Hello World App Here, we will create an app named hello-world ng new hello-world Now, go to the directory of a newly created project. cd hello-world Before running your app, let’s dive a bit deeper in coding behind the picture. 2.1 Fi...

3 Node.js Alternatives To WordPress

3 Node.js Alternatives To WordPress As compare to WordPress there is alternative option like Node.js. There are many various latest challengers that have large communities, support themes, plugins and are easy to install on your own server. Here are 3 you might want to checkout. KeystoneJS KeystoneJS is a content management system and framework to build server applications that interact with a database. It is based on the Express framework for Node.js and uses MongoDB for data storage. It represents a CMS alternative for web developers who want to build a data-driven website but don’t want to get into the PHP platform or large systems like WordPress. EnduroJS Enduro.js offers a fast and easy way to build your project, beautiful and simple admin UI and integrated tools to build everything on the server. It works without a database, instead relying on a system of flat files that can be opened directly in a text editor. It is easy to install and can be deployed via Git. ...