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
jagjitsingh@indivar.comjagjitsingh@indivar.com 

Quote

Hi

 

   How Quote like form can be developed . My requirement is Quote Detail & Quote Lines Sections . Pls help.

 

Thanks

 

My OwnMy Own

 

 

Try this code.  There is only page code, nothing else required to do. To verify this output 

change your url like this.  (Pass id=Quote Id as parameter to this.)

https://myownpack.ap1.visual.force.com/apex/Quotes?id=0Q0900000008oUW 

 

 

<apex:page standardController="Quote" tabStyle="Account" > 
<apex:messages />
     <apex:form >
     <apex:pageBlock id="buttonsBlock">                            
          <apex:detail subject="{!Quote }" rendered="true" showChatter="false" inlineEdit="true" relatedList="true"/>
          <br></br>
          <br></br>
          <br></br>
          <br></br>
  </apex:pageBlock>
</apex:form>
       <!--   <apex:relatedList list="QuoteLineItem">
                <apex:facet name="header">Titles can be overriden with facets</apex:facet>
          </apex:relatedList> -->
 
</apex:page>

 

jagjitsingh@indivar.comjagjitsingh@indivar.com

Hi

 

    Can u help me in creating a page like this

 

   Detail : Ord No , Ord Date

   Lines : Item No , Qty , Value similar to Quotes .

 

 

    What i should do . I should first create 2 Objects Master & Detail . If Yes then how 2 should be linked and Create a form like u mentioned . Can u pls help me with code on this . It will be of great help to me.

 

Thanks