Skip to main content
Priti Gohil (PwC) 님이 #Apex에 질문했습니다
On user object - I want to display warning message via VF page, but here the problem is there is no option for Inline VF page on User Layout. is there any workaround?

OR

Apart from VF page is there any other options to display warning?

On USER (object) detail page  - I want to display warning message
답변 3개
  1. 2020년 8월 13일 오후 12:49

    Hi Kristiana, 

    You need to add Standard Controller = User on your visualforce page for it to be visible here. Example below

    <apex:page standardController="User">

    -- SOME MESSAGe --

    </apex:page>

    Once you have this, the page should be available for you in the layout.

     

    Best,

    Vishal

0/9000