• Vivek_Gupta
  • NEWBIE
  • 0 Points
  • Member since 2013
  • Salesforce Developer
  • Accenture

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

Hi All,

 

I am deploying data model into another sandbox. I need to migrate FLS for all objects related to profiles. When i retrieve package for Object & Profiles only the custom fields are fetched no the standard. Is there any way through which FLS for standard fields can be migrated. Thanks in advance!

hi all,

I have a functionality wherein i need to use aepx:actionfunction and apex:param for an apex:outputlink
The problem:


<apex:column >
         <apex:outputLink value="/{!item.id}" target="_blank" onclick="callAcc();">
         {!item.name}
         <apex:param name="passid" value="{!item.id}"/>
         </apex:outputLink>
        </apex:column>
***********************************

 Id accid=ApexPages.currentPage().getParameters().get('passid');
        System.debug('**** new accountid is'+accid);


When i try to get the param passed in controller it fetches null.How do i fix it?

Thanks,
SFDC Coder