• 4u
  • NEWBIE
  • 0 Points
  • Member since 2013

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

<apex:pageBlockSection title="{!c.Name} {!c.Type_Name__c} {!c.Hours__c} {!c.Custom__c} {!c.Fl__c} {!c.Out__c} {!theopportunity.Original_Product_Type__c} {!theopportunity.Original_Aircraft_Type__c} {!theopportunity.Original_Hours__c} "
columns="1" rendered="{!CONTAINS(theRequest.Type__c,'Car')}">

 

 

I want the above merge fields to be displayed in two lines 

 

{!c.Name} {!c.Type_Name__c} {!c.Hours__c} {!c.Custom__c} {!c.Fl__c} {!c.Out__c} in one line and 

 

{!theopportunity.Original_Product_Type__c} {!theopportunity.Original_Aircraft_Type__c} {!theopportunity.Original_Hours__c} in another line 

 

 

can any one help me in this ?? is it possible 

  • May 02, 2013
  • Like
  • 0

AF is an object name it has 3 types of values A, B and C

There are the 3 pageblocksections. I want these three sections to be displayed accordingly 

If it has only of type A then display share section rest two should not be displayed that will be achieved by the below code 

if it has A and B two sections should be displayed 

if it has 2 A's and 3 B's   then 2 A sections should be displayed and 3 B sections should be displayed 

 

<apex:outputpanel id="C">
<apex:pageBlockSection title="Card Info" columns="1" rendered="{!CONTAINS(theRequest.Type__c,'C')}">

 

<apex:outputpanel id="B">
<apex:pageBlockSection title="B Info"
columns="1"
rendered="{!CONTAINS(theRequest.Type__c,'B')}"
collapsible="false">

 

 

<apex:outputpanel id="C">
<apex:pageBlockSection title="C Info"
columns="1"
rendered="{!CONTAINS(theRequest.Type__c,'C')}"
collapsible="false">

 

 

 

can any one help me 

  • April 17, 2013
  • Like
  • 0

<apex:outputpanel id="share">
<apex:pageBlockSection title="Share Info"
columns="1"
rendered="{!CONTAINS(theRequest.Type__c,'Share')}"
collapsible="false">

 

I want the above section to be repeated depending on the number of shares in Aircraft Product table 

can any one help me in that 

  • April 16, 2013
  • Like
  • 0

1) for profile A record type of a contact cannot be changed from prospect to future 

 

 

2) for profile B record type of a contact cannot be changed from prospect to  future when there is a opportunity for that contact 

 

 

 

can any one help me with validation rules for the above two statements 

 

 

  • April 08, 2013
  • Like
  • 0