• arun kumar 900
  • NEWBIE
  • 0 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
I have created a vf page and added it to a new section of the case page layout(standard), however I am not able to see the vfpage when I try to edit or create a new record.  On my vf page I am using field sets to display the custom fields.  I am looking to be able to see formula fields when creating a new record type as well as populate the manual entry fields.  

The screenshot is of what the vf page looks like on the case page.  
User-added image

When its in edit mode the entire vf page(section) is not visible.

User-added image
VFPage code:
<apex:page standardController="Case">
    <apex:form >
        <apex:pageBlock >
                    <apex:pageBlockSection title="Advance Disbursement/LIBOR Rollover Authorization" columns="2">
           <apex:repeat value="{!$ObjectType.Case.FieldSets.Advance_Request}" 
                    var="field">
              <apex:inputField value="{!Case[field]}" />
              </apex:repeat>
                       </apex:pageBlockSection>
     </apex:pageBlock>
     </apex:form>
       <apex:form >
        <apex:pageBlock >
                    <apex:pageBlockSection title="Borrowing Base Information (Optional)" columns="2">
           <apex:repeat value="{!$ObjectType.Case.FieldSets.Advance_Request}" 
                    var="field">
              <apex:inputField value="{!Case[field]}" />
              </apex:repeat>
                       </apex:pageBlockSection>
     </apex:pageBlock>
     </apex:form>
<apex:form >
        <apex:pageBlock >
                    <apex:pageBlockSection title="Disbursement Instructions" columns="2">
           <apex:repeat value="{!$ObjectType.Case.FieldSets.Advance_Request}" 
                    var="field">
              <apex:inputField value="{!Case[field]}" />
              </apex:repeat>
                       </apex:pageBlockSection>
     </apex:pageBlock>
     </apex:form>
     <apex:form >
        <apex:pageBlock >
                    <apex:pageBlockSection title="Option Priced Loan Advance and Rollover Information (If Applicable)" columns="2">
           <apex:repeat value="{!$ObjectType.Case.FieldSets.Advance_Request}" 
                    var="field">
              <apex:inputField value="{!Case[field]}" />
              </apex:repeat>
                       </apex:pageBlockSection>
     </apex:pageBlock>
     </apex:form>
     </apex:page>