• Riya
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 5
    Replies

Hi ,

 

whether there is any limitation for lineitem in an opportunity ?.

Where i can see the document for  the above.

What about the Quote line item limitation in a quote?

 

Thanks

 

  • January 02, 2013
  • Like
  • 0

i have created a VF page with three components.

On the action support event even though specifically i have given which component to rerender all the components with rendered attribute is recalculated.

Whether this is the expected behaviour?

 

 

<apex:page controller="exampleCon">
<apex:form >
<apex:actionRegion >
<apex:outputPanel id="counter">
    <apex:outputText value="Click Me!: {!count1}" />
        <apex:actionsupport event="onclick" action="{!incrementCounter}" rerender="countertest1" status="counterStatus" />
    </apex:outputPanel>
</apex:actionRegion>
 
<apex:outputpanel id="countertest" rendered="{!isFlagRendered}">                                 
{!count2}
</apex:outputpanel>

<apex:outputpanel id="countertest1" >                                 
{!count1}
</apex:outputpanel>

</apex:form>
</apex:page>


-------------------------------------------------------------------------------------------------------------------

public class exampleCon {
public boolean isFlagRendered{get;set;}
Integer count1 = 0;
Integer count2 = 0;
public Integer getCount1() {
    return count1;
}
public Integer getCount2() {
    return count2;
}


public PageReference incrementCounter() {
count1++;
return null;
}

}

  • October 29, 2012
  • Like
  • 0

Hi,

 

I have a multiselect picklist field with values A,B,C,D,E.

I want when i select A or B, it should create only account and contact but when i select C or D or E, it should create Account,Contact and Opportunity.

 

Please help me, its very urgent.

 

Thanks.

I've just begin with the Force.com platform. Any other reporting tool I've used (SSRS, Access, Crystal, etc) has the ability to group within groups. In the example below, I would want to group by client and show some client data, then show parts they have purchased. Ideally I would show service calls as a level and parts inside that level, but if I can figure out how to do this simpler scenario, I should be good to build heirarchies.

Looking at my mock up, is this possible in the report builder?

 

WilliamsJohn    
 client idaddressphone  
 1234 Oak St. 123-456-9090  
 Part # part Desc.qtyPrice easubtotal
 90-933½'' PVC bushing30.89$2.67
 88-009tfe tape11.39$1.69
 34-001Hammer arrestor146.88$46.39
     $50.75
ClaytonMary    
 client idaddressphone  
 206191 Crooked Brook898-111-2222  
 Part # part Desc.qtyPrice easubtotal
 605441½ pvc sched 40 pipe900.29$26.10
 444-6PVC cement18.99$8.99
     $35.09
      
MichaelsLawrence    
 client idaddressphone  
 454456 Wild Way888-444-5568  
 Part # part Desc.qtyPrice easubtotal
 605441½ pvc sched 40 pipe906.23$560.70
 88-009tfe tape31.39$4.17
     $564.87
      
      

i have created a VF page with three components.

On the action support event even though specifically i have given which component to rerender all the components with rendered attribute is recalculated.

Whether this is the expected behaviour?

 

 

<apex:page controller="exampleCon">
<apex:form >
<apex:actionRegion >
<apex:outputPanel id="counter">
    <apex:outputText value="Click Me!: {!count1}" />
        <apex:actionsupport event="onclick" action="{!incrementCounter}" rerender="countertest1" status="counterStatus" />
    </apex:outputPanel>
</apex:actionRegion>
 
<apex:outputpanel id="countertest" rendered="{!isFlagRendered}">                                 
{!count2}
</apex:outputpanel>

<apex:outputpanel id="countertest1" >                                 
{!count1}
</apex:outputpanel>

</apex:form>
</apex:page>


-------------------------------------------------------------------------------------------------------------------

public class exampleCon {
public boolean isFlagRendered{get;set;}
Integer count1 = 0;
Integer count2 = 0;
public Integer getCount1() {
    return count1;
}
public Integer getCount2() {
    return count2;
}


public PageReference incrementCounter() {
count1++;
return null;
}

}

  • October 29, 2012
  • Like
  • 0

Hi,

 

I am adding one VF page in one section of Account pagelayout,it looks little odd, as the background color of VF is grey and rest is white, i want to make the background color of VF page equivalent to standard. Help me!

 

thanks

  • October 26, 2012
  • Like
  • 0