function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Cynthia Rodgers 12Cynthia Rodgers 12 

Unable to see the visual-force page when i create a new record

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>

 
Best Answer chosen by Cynthia Rodgers 12
PawanKumarPawanKumar
Hi,

Still this features is not delivered for Salesforce classic version(in lightning this works fine). So this is not poosible.

https://success.salesforce.com/ideaView?id=08730000000Br8CAAS

Regards,
Pawan Kumar

All Answers

PawanKumarPawanKumar
Hi,

Still this features is not delivered for Salesforce classic version(in lightning this works fine). So this is not poosible.

https://success.salesforce.com/ideaView?id=08730000000Br8CAAS

Regards,
Pawan Kumar
This was selected as the best answer
Cynthia Rodgers 12Cynthia Rodgers 12
Thank you.  
arun kumar 900arun kumar 900
I am 100% sure you cannot do callouts after DML because I already faced this. There might be a reason behind this architecture.    

I am not sure about future method. Let me know If you want me to confirm this. (https://www.gethanumanchalisa.website/)
CB Background (https://www.smmhut.com/)