You need to sign in to do that
Don't have an account?
ERROR: Currency Fields on entities with effective dated currency are not supported
<apex:pageBlockTable value="{!opportunities}" var="o" rendered="{!selectedSize <> 1}">
<apex:column rendered="{!selectedSize > 1}" headerValue="Action">
<apex:outputLink value="{!URLFOR($Action.Opportunity.View, o.id)}">view</apex:outputLink>
</apex:column>
<apex:column headerValue="Opporunity Name">
<apex:commandLink value="{!o.name}" action="{!setbubble}" status="status" rerender="thePlot,selectedBubbles">
<apex:param value="{!o.id}" name="foo" assignTo="{!selectedId}"/>
</apex:commandLink>
</apex:column>
<apex:column headervalue="Account Name"><apex:outputField value="{!o.accountId}"/></apex:column>
<apex:column headerValue="Amount"><apex:outputField value="{!o.amount}"/></apex:column>
<apex:column headerValue="Stage"><apex:outputField value="{!o.stageName}"/></apex:column>
<apex:column headerValue="Probability"><apex:outputField value="{!o.probability}"/></apex:column>
<apex:column headerValue="Close Date"><apex:outputField value="{!o.closeDate}"/></apex:column>
</apex:pageBlockTable>
<apex:pageBlockSection rendered="{!selectedSize == 1}">
<apex:outputField value="{!opportunity.name}"/>
<apex:outputField value="{!opportunity.account.name}"/>
<apex:outputField value="{!opportunity.probability}"/>
<apex:outputField value="{!opportunity.closeDate}"/>
<apex:outputField value="{!opportunity.amount}"/>
<apex:outputField value="{!opportunity.lastActivityDate}"/>
</apex:pageBlockSection>
typical! everytime I want to do something moderatly simple salesfore doesn't support it... grrrr...
this, not being able to convert new lines to <br> tags .. the list goes on... you'd think that when a function gets implemented that they would look at the impact to the rest of the system, or at the very least before you switch it on having a warning of current limitations. Oh well off to the world of custom code...
Hi,
This is a serious limitation. I logged an idea in the Salesforce Community site. Please promote:https://sites.secure.force.com/ideaexchange//apex/ideaView?c=09a30000000D9xt&id=087300000007kSc&returnUrl=/apex/ideaList%3Fc%3D09a30000000D9xt%26sort%3Drecent
Thanks,
Yariv
Here's a repost of YarivO's ideas link:
https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&id=087300000007kScAAI
Please promote this one folks!
PS I agree with the post above, less chatter, more useful functionality.
Couldn't agree more. Seems like every quartly update is 90% focussed on Chatter and now the certification exams are full to the brim with Chatter questions. News flash! Lots of us don't use Chatter and have no interest in making Salesforce "social"!
There's so many basics that are missing, like this one (and as an extension, the ability to display the Converted Amount field on emails which exists on reports) and really basic things like Case-Switch statements in Apex.
Please Salesforce, leave Chatter alone, there's much more important things that we need!
Thanks for this info, its working now. :)
Cheers
To Disable these settings go to setup->Company Profile->Manage Currencies->Disable it.
Else manage the display with checking this option with if..Else logic.
<apex:page standardcontroller="Opportunity">
<apex:pageBlock >
<apex:pageBlocksection title="Opportunity Details" >
<apex:outputField value="{!Opportunity.Name}"/>
<apex:outputField value="{!Opportunity.Amount}"/>
<apex:outputField value="{!Opportunity.CloseDate}"/>
<apex:outputField value="{!Opportunity.Account.Name}"/>
</apex:pageBlocksection>
</apex:pageBlock>
</apex:page>
Please Mark as Best Answer if you find useful.