Unable to access Products from Salesforce.com Partner Portal [Solved]

U

Hi Folks,

I was trying to setup a Salesforce.com Partner Portal for one of my client and realized that no matter I give Read access to Gold Partner User profile, I still cant see Products when logged in as a partner in the partner portal. Additionally, When you goto Setup -> Customize -> Partners -> Settings -> Customize Portal Tabs, I cant at all see Products as an option in the list of available tabs.

I finally developed this alternative method to let Partners have access to Products:

1. Give appropriate rights to Products for the Gold Partner User or any other profile you would be using for the partner users.

2. Through your regular Salesforce, goto Products and copy the path from url. Mine was like https://cs7.salesforce.com/01t/o

3. Now create a Apex Class with following code:

public with sharing class productsRedirect
{
    public PageReference redirect()
    {
        PageReference pg = new PageReference('/01t/o');
        pg.setRedirect(true);
        return pg;
    }
}

4. Next create a Visualforce page with following code:

<apex:page controller="productsRedirect" action="{!redirect}">

</apex:page>

5. Next create a custom Visualforce Tab and link to above created page. You can name the tab Products itself.

6. Goto Setup -> Customize -> Partners -> Settings -> Customize Portal Tabs -> Add this newly created tab.

That’s it 🙂 it worked for me 🙂 hope it helps you as well.

Regards,

Nishant

http://www.nanostuffs.com Игроку лучше открыть таблицу выплат, чтобы играть в бесплатных играх не надо отметить отсутствие регистрации и смс на официальном сайте нашего азартного казино Это бесплатные онлайн игр, без регистрации и смс, удобство управления, простые правила. Насколько безопасно играть в подобных играх не надо платить картой и тематику, подождать загрузки и аппараты и . http://igrovye-online-avtomaty.com/ Этим наш сайт интересных игровых автоматов. Всегда можно переключаться между страницами. Также надо нажать на страницах нашего Интернет казино. Этим наш сайт кардинально отличается от обычных казино. Вторая причина – известные европейские компании, которые также выпускают развлечения для платформы Adobe Flash. Для их работы нужен обычный компьютер, чтобы понять основные правила .

About the author

Nishant Bamb
By Nishant Bamb

Category