• Namit Pal
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 6
    Questions
  • 2
    Replies
Error in Deploying Joined Report - blocks: Invalid block join value specified. 

Hey Guys, 
I am trying to deploy a joined report to a higher sandbox. I am receiving this error in Deployment.  

blocks: Invalid block join value specified. 

This is on line number 0, column 0. 
Could anyone help me with a solution to this? I am not updating any metadata of the report. Just took the metadata from one org and pasted it the deployment tool which is Visual Basics for us. 

 

Hi,
I have enabled the settings required for AccountContactRelation and I have made some changes on the object. I need to migrate the same to a higher environment for which i need to retrieve the metadat. I have tried retrieving it using version 37.0 of package.xml and it gives some metadata but not all of it. 

Can someone tell me how to retrieve the complete metadata of AccountContactRelation?

Hi, 
I have a requirement where I want to schedule a particular email to be sent to a public group every week from a particular Start date to a particular End date. The user should have the ability to start and stop the email services as and when required within this date range. Can anyone help me with a possible solution to this?

Hi everyone. I wish to write a test class for a vf page- custom controller. I am attaching both the codes for reference.

vf page:-
<apex:page standardController="Project_Mapping__c" extensions="MyProjectsPageController">
     <apex:pageBlock title="My Current Projects">
        <apex:pageBlockTable value="{!ListCurrentProjects}" var="Current">
            <apex:column >
                <apex:facet name="header">Project Name</apex:facet>
                <apex:outputText value="{!Current.Project__r.Name}"/>
            </apex:column>
            <apex:column >
                <apex:facet name="header">Project Start Date</apex:facet>
                <apex:outputText value="{!Current.Resource_Start_Date__c}"/>
            </apex:column>
            <apex:column >
                <apex:facet name="header">Project End Date</apex:facet>
                <apex:outputText value="{!Current.Resource_End_Date_del__c}"/>
            </apex:column>
            <apex:column >
                <apex:facet name="header">Status</apex:facet>
                <apex:outputText value="{!Current.Project__r.Status__c}"/>
            </apex:column>
        </apex:pageBlockTable>
    </apex:pageBlock>
     <apex:pageBlock title="My Previous Projects">
        <apex:pageBlockTable value="{!ListPreviousProjects}" var="Previous">
            <apex:column >
                <apex:facet name="header">Project Name</apex:facet>
                <apex:outputText value="{!Previous.Project__r.Name}"/>
            </apex:column>
            <apex:column >
                <apex:facet name="header">Project Start Date</apex:facet>
                <apex:outputText value="{!Previous.Resource_Start_Date__c}"/>
            </apex:column>
            <apex:column >
                <apex:facet name="header">Project End Date</apex:facet>
                <apex:outputText value="{!Previous.Resource_End_Date_del__c}"/>
            </apex:column>
             <apex:column >
                <apex:facet name="header">Status</apex:facet>
                <apex:outputText value="{!Previous.Project__r.Status__c}"/>
            </apex:column>
        </apex:pageBlockTable>
    </apex:pageBlock>
     <apex:pageBlock title="My Future Projects">
        <apex:pageBlockTable value="{!ListFutureProjects}" var="Future">
            <apex:column >
                <apex:facet name="header">Project Name</apex:facet>
                <apex:outputText value="{!Future.Project__r.Name}"/>
            </apex:column>
            <apex:column >
                <apex:facet name="header">Project Start Date</apex:facet>
                <apex:outputText value="{!Future.Resource_Start_Date__c}"/>
            </apex:column>
            <apex:column >
                <apex:facet name="header">Project End Date</apex:facet>
                <apex:outputText value="{!Future.Resource_End_Date_del__c}"/>
            </apex:column>
            <apex:column >
                <apex:facet name="header">Status</apex:facet>
                <apex:outputText value="{!Future.Project__r.Status__c}"/>
            </apex:column>
        </apex:pageBlockTable>
    </apex:pageBlock>
</apex:page>


controller:-
User-added image

Hi everyone. I have a junction object called Project Mapping which has a lookup to a custom object- 'Project' and a lookup to the Standard Object- 'User'. The junction object is the link between the two objects which is mapping the objects.  

My objective is to create a SOQL query to retrieve the Projects related to a particular user, specifically the user who has signed in. 

I am struggling a lot to create that query. Can someone please help me with that query? 


User-added image

Hi Everyone, I am very new to salesforce and am currently working on a sample application for Human Resource. 

I have stored the Employee Level and corresponding salary in a custom setting. So when i create a new employee, i should be able to select the employee level, which should auto populate the salary field using the custom setting field. Can anyone help me on how to do that?
Hi Everyone, I am very new to salesforce and am currently working on a sample application for Human Resource. 

I have stored the Employee Level and corresponding salary in a custom setting. So when i create a new employee, i should be able to select the employee level, which should auto populate the salary field using the custom setting field. Can anyone help me on how to do that?