Reply
Regular Contributor
tylerseffort
Posts: 16
0

Re: Activity Seperation - should be easy!!

[ Edited ]

I deployed using the above scenario, I got the exact same error messege, any suggestions for changes to my XML?

 

 

I also just got a case email back from SalesForce telling me that it's not possible to seperate the activities....I know it is!! I must do it!! haha

Super Contributor
Starz26
Posts: 1,422
0

Re: Activity Seperation - should be easy!!

Your xml need to specify what objects need deleted:

 

review this video:

 

http://blog.jeffdouglas.com/2011/05/19/deploying-salesforce-com-metadata-with-ant-video/

SFDC Certified Administrator, Advanced Developer
Regular Contributor
tylerseffort
Posts: 16
0

Re: Activity Seperation - should be easy!!

THANK YOU so much!!

 

To both of you, finally figured it out!

 

I have one last question, I got the visual force page to show up in production and it looked fine, however once I tried to add custom activity objects it gave me an error on the load, here is what my visual force page looks like:

 

<apex:page standardController="Lead" extensions="Showevent">

  <apex:pageBlock >

      <apex:pageBlockTable value="{!ev}" var="v">

          <apex:column value="{!v.subject}"/>
          
          <apex:column value="{!v.Seminar_Time__c}"/>
          
          <apex:column value="{!v.Seminar_Speaker__c}"/>
          
          <apex:column value="{!v.Seminar_Head_Count__c}"/>

      </apex:pageBlockTable>

  </apex:pageBlock>

</apex:page>

 

 

 

What did I do wrong?

Regular Contributor
tylerseffort
Posts: 16
0

Re: Activity Seperation - should be easy!!

I figured out my last question. I have one last and final question. Is there a way to make the subjects on my visual force page viewable? In other words, can I enter the child events pages from the visual force page by clicking the subject?