Hi Saavan,
Thank you for your question.
In your case you need to use drill down to specific user by default instead of root ID. You can put simple JavaScript into JavaScript editor of the configuration wizard. This script will do everything for you.
You can find similar case with drilling down to specific user according to URL parameter here.
Additional information about JavaScript framework is in the documentation.
Please take a look at the code sample below. Just replace “accountNameForDefaultDrillDown” with account name of employee which you want to display by default.
As result breadcrumb will be rendered and you will be able to navigate up from current employee.
[code]var isFirstLoad = true;
var accountName = “accountNameForDefaultDrillDown”;
renderer.onLoadingFinished(function(){
if(isFirstLoad){
isFirstLoad = false;
renderer.drillDown(accountName);
}
});[/code]