• TaraSrinivas Chandika
  • NEWBIE
  • 5 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Dear All,

I am new to "salesforce for slack" app.
I have a requirement to add the name of the application in the slack approval notification wizard.

Below is the example and Steps :
************************************
1)  Open "Sales" application in  salesforce organization.
2)  Create a new Account in "Sales" application in salesforce org.
3)  Click "Submit for Approval" button.
4)  Received slack approval notification with "Approve" and "Reject buttons in slack. like the below screenshot.
User-added imageIn the above screen highlighted place, need to add the application name like this "Sook Fung is requesting approval for account (Sales)"

Currently in the above screen                : "Sook Fung is requesting approval for account".
Need to Change as per my requirement: "Sook Fung is requesting approval for account (Sales)"

Can anyone help/suggest/guide me to achieve my requirement?

Thank you very much in advance

Regards,
 
Using a Standard List Controller, create a Visualforce page which displays a list of Accounts with links to their respective record detail pages.
The page must be named 'AccountList'.
It must reference the Account standard controller.
It must have a recordSetVar equal to 'accounts'.
It must have a Visualforce apex:repeat component.
The repeater must have the var attribute set to 'a'.
The repeater must use the <li> HTML list tag
The repeater must use the apex:outputLink component to link to the respective record detail page
HINT: Record detail pages can be reached by placing a record ID at the root of the URL (e.g. '/<record id>').