• Nick_Joe
  • NEWBIE
  • 0 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 0
    Replies
User-added image
How to hide Action in Salesforce for Specific Profile ( Account Team Memeber)? 
Hi @all
How to hide Action in Salesforce for Specific Profile ?
User-added image
Please share your knowledge.
 
Hi @all
When I post image in Feed Item(Out of box)  through Portal  as a Customer and In Org case detail page "image" not visible
Error Message display like this:- 
FeedbodyContent data type - Rich text area.
in Portal Image visible and In org - Image not visible.

Please share any knowledge. how to show Image in Org, When I post image through portalUser-added image
Hi Everyone, Aura Lightning navigate from one component to another component.Here is the code:-

        var workspaceAPI = component.find("workspace");
        workspaceAPI.openSubtab({
           url: '/lightning/r/Case/ + '/'+ recordId +'/'+ /view',
           focus: true
        }).then(function(subtabId){
            workspaceAPI.setTabLabel({
                tabId: subtabId,
            });
           
        }).catch(function(error) {
            console.log(error);
        });
Please suggest if anyone had faced this issue in the past or have any idea.
thanks in advance.
Hi Everyone, to navigate from one component to another component.but when I load first time Community Page it does not navigate.then again refresh page, It's work.Navigation Please suggest if anyone had faced this issue in the past or have any idea.
thanks in advance.
here is the code:-

var urlEvent = $A.get("e.force:navigateToURL");
 urlEvent.setParams({
        "url": "/web-version?recordId="+caseId
        });
      urlEvent.fire();
                                        OR

window.location.href = "/web-version?recordId="+caseId;

Both are not working - First Time Naviagtion show error and the refresh page, It's work.
Hi Everyone, to navigate from one component to another component.but when I load first time Community Page it does not navigate.then again refresh page, It's work.Navigation Please suggest if anyone had faced this issue in the past or have any idea.
thanks in advance.
here is the code:-

var urlEvent = $A.get("e.force:navigateToURL");
 urlEvent.setParams({
        "url": "/web-version?recordId="+caseId
        });
      urlEvent.fire();
                                        OR

window.location.href = "/web-version?recordId="+caseId;

Both are not working - First Time Naviagtion show error and the refresh page, It's work.