• Newbiee
  • NEWBIE
  • 0 Points
  • Member since 2013

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

How to query records from recycle bin?

Need formula for pulling CONTACT fields data and mapping it to custom fields in Opportunities

 

Example: I need the CONTACT address, phone, city, state , fax to populate Matching Custom fields in the Opportunity when I use the a custom Opportunity lookup. So if I use the LOOKUP field and Select a Contact it also populated the address, phone....etc in opportunity.

Hi 

 

  1. How many rows return by list controller?

Thanks,

I'm setting up different page layouts for different user profiles.  As a system administrator, is there another way to see what the user sees instead of them granting log in access to you?

How can we check the object accessibility on visualforce page?

 

Thanks

 how do i create a search page with company and phone search field:
 
Vf page:
 

<apex:page tabStyle="Account" Controller="SDFindCustomer" id="FindCustomerPage" sidebar="true" showHeader="true" >

<apex:form id="FindCustomer">
<apex:outputPanel id="msgPanel">
<apex:pageMessages ></apex:pageMessages>
</apex:outputPanel>

<apex:pageBlock >

<apex:pageBlockSection id="NamePanel" columns="2">

<apex:outputLabel value="Company Name" for="cname" > </apex:outputLabel>
<apex:inputtext id="cname" value="{!companyName}" />
<apex:outputLabel value="phone No" for="phone" > </apex:outputLabel>
<apex:inputtext id="phone" value="{!phone}" />

</apex:pageBlockSection>
<apex:pageBlockButtons location="bottom">
<apex:commandButton action="{!findLeadsAndAccounts}" value="Find" ID="ENTER_BUTTON" />
</apex:pageBlockButtons>
</apex:pageblock>

</apex:form>

<apex:form id="accountListForm">

<apex:pageBlock >

<apex:pageBlockSection id="AccountPanel" >

<apex:outputPanel id="accTablePanel" >
<apex:pageblocktable value="{!accountList}" var="acc">
<apex:column headerValue="id" >{!acc.id}</apex:column>
<apex:column headerValue="Name" >{!acc.Name}</apex:column>
<apex:column headerValue="Phone" >{!acc.phone}</apex:column>
</apex:pageblocktable>
</apex:outputPanel>

</apex:pageBlockSection>
</apex:pageblock>

</apex:form>

</apex:page>

Need formula for pulling CONTACT fields data and mapping it to custom fields in Opportunities

 

Example: I need the CONTACT address, phone, city, state , fax to populate Matching Custom fields in the Opportunity when I use the a custom Opportunity lookup. So if I use the LOOKUP field and Select a Contact it also populated the address, phone....etc in opportunity.

Hi 

 

  1. How many rows return by list controller?

Thanks,

I'm setting up different page layouts for different user profiles.  As a system administrator, is there another way to see what the user sees instead of them granting log in access to you?

How can we check the object accessibility on visualforce page?

 

Thanks

How can we check the object accessibility on visualforce page?

 

Thanks

 how do i create a search page with company and phone search field:
 
Vf page:
 

<apex:page tabStyle="Account" Controller="SDFindCustomer" id="FindCustomerPage" sidebar="true" showHeader="true" >

<apex:form id="FindCustomer">
<apex:outputPanel id="msgPanel">
<apex:pageMessages ></apex:pageMessages>
</apex:outputPanel>

<apex:pageBlock >

<apex:pageBlockSection id="NamePanel" columns="2">

<apex:outputLabel value="Company Name" for="cname" > </apex:outputLabel>
<apex:inputtext id="cname" value="{!companyName}" />
<apex:outputLabel value="phone No" for="phone" > </apex:outputLabel>
<apex:inputtext id="phone" value="{!phone}" />

</apex:pageBlockSection>
<apex:pageBlockButtons location="bottom">
<apex:commandButton action="{!findLeadsAndAccounts}" value="Find" ID="ENTER_BUTTON" />
</apex:pageBlockButtons>
</apex:pageblock>

</apex:form>

<apex:form id="accountListForm">

<apex:pageBlock >

<apex:pageBlockSection id="AccountPanel" >

<apex:outputPanel id="accTablePanel" >
<apex:pageblocktable value="{!accountList}" var="acc">
<apex:column headerValue="id" >{!acc.id}</apex:column>
<apex:column headerValue="Name" >{!acc.Name}</apex:column>
<apex:column headerValue="Phone" >{!acc.phone}</apex:column>
</apex:pageblocktable>
</apex:outputPanel>

</apex:pageBlockSection>
</apex:pageblock>

</apex:form>

</apex:page>