• Ronald Olech
  • NEWBIE
  • 134 Points
  • Member since 2014
  • Consultant


  • Chatter
    Feed
  • 3
    Best Answers
  • 0
    Likes Received
  • 1
    Likes Given
  • 1
    Questions
  • 12
    Replies
Hi,
We’re on EE and I have been tasked with creating a lifecycle of the below integration stages

Integration Stages
Pre-Coding Date
Coding Date
Review Date
Documentation Date
 
Pre-Coding Life = If Coding Date isblank, count days between Pre-Coding Date and Today; else count days between Pre-Coding Date and Coding Date
Coding Life = If Review Date isblank, count days between Coding Date and Today; else count days between Coding Date and Review Date
Review Life = If Documentation Date isblank, count days between Review Date and Today; else count days between Review Date and Documentation Date
Documentation Life = If Certified Date isblank, count days between Documentation Date and Today; else count days between Documentation Date and Certification Date
Total Life = If Certified Date isblank, count days between Pre-Coding Date and Today; else count days between Pre-Coding Date and Certified Date
 
Regards,

Brian
I am trying to achieve the following:
 
I have accounts:
ManufacturerA
RetailerX
RetailerY
 
There is a custom object “Licence” consisting of:
Licence holder (an account e.g. RetailerY) with other licence details.
An account may have multiple licences.
 
I have a custom object “Retailer of” consisting of:
Manufacturer (account)
Retailer (account)
For example;
RetailerX is a retailer of ManufacturerA
RetailerY is a retailer of ManufacturerA
 
I want to report the licence data of retailers of a manufacturer.
 
Manufacturer: ManufacturerA:
               Retailer: RetailerX
                              Licence 001 …other details
   Licence 005 …other details
               Retailer: RetailerY
                              Licence 8097 …other details
                              Licence 8098 …other details
                              Licence 8099 …other details
                              Licence 8100 …other details


I have tried joined reports but haven't found a way to achieve it.
Please can anyone tell me how?
(I'm assuming I have structured the data in the only way possible using custom objects).

Does it require a VisualForce page?

Any suggestions and examples would be much appreciated.

Dave.
 
The following formula is shoing an error. 
DATE( 
YEAR(CurrentEndDate__c + GracePeriod__c ),
(MONTH(CurrentEndDate__c + GracePeriod__c)+1), 
(1) 
)-1

CurrentEndDate__c = 11/30/2015
GracePeriod__c = 30

Please help!
  • December 09, 2015
  • Like
  • 0
Trailhead Lightening Excperience superbadge, step 6.  I've tested the functionality and it is working, but I'm getting an error verifying it.  I was on pace for a first ascent too.

Challenge Not yet complete... here's what's wrong: 
There was an unexpected error in your org which is preventing this assessment check from completing: System.DmlException: Delete failed. First exception on row 0 with id 00341000001rOfEAAU; first error: DELETE_FAILED, Your attempt to delete Sam the ninja could not be completed because it is associated with the following adventure packages.: null, null : []
Trailhead Lightening Excperience superbadge, step 6.  I've tested the functionality and it is working, but I'm getting an error verifying it.  I was on pace for a first ascent too.

Challenge Not yet complete... here's what's wrong: 
There was an unexpected error in your org which is preventing this assessment check from completing: System.DmlException: Delete failed. First exception on row 0 with id 00341000001rOfEAAU; first error: DELETE_FAILED, Your attempt to delete Sam the ninja could not be completed because it is associated with the following adventure packages.: null, null : []
I'm starting the Apex Specialist Superbadge, but the "Trailhead Apex Superbadge" unmanaged package is not installing. 

I received a message saying it was taking a long time, and I would be alerted when done, which is almost an hour ago now. What is the expected time for this to be installed?
Hi,
We’re on EE and I have been tasked with creating a lifecycle of the below integration stages

Integration Stages
Pre-Coding Date
Coding Date
Review Date
Documentation Date
 
Pre-Coding Life = If Coding Date isblank, count days between Pre-Coding Date and Today; else count days between Pre-Coding Date and Coding Date
Coding Life = If Review Date isblank, count days between Coding Date and Today; else count days between Coding Date and Review Date
Review Life = If Documentation Date isblank, count days between Review Date and Today; else count days between Review Date and Documentation Date
Documentation Life = If Certified Date isblank, count days between Documentation Date and Today; else count days between Documentation Date and Certification Date
Total Life = If Certified Date isblank, count days between Pre-Coding Date and Today; else count days between Pre-Coding Date and Certified Date
 
Regards,

Brian
I'm receiving the following error on challenge #6 of the Lightning Superbadge:

Challenge Not yet complete... here's what's wrong: 
There was an unexpected error in your org which is preventing this assessment check from completing: System.DmlException: Delete failed. First exception on row 0 with id 0035000002hUBgRAAW; first error: DELETE_FAILED, Your attempt to delete Sam the ninja could not be completed because it is associated with the following adventure packages.: null, null : []

Looking at the Developer Console, it looks like the code which checks the system is forgetting to delete the Adventure Package records before deleting the Contact. Has anyone else run into this issue?

Thank you!
I am trying to achieve the following:
 
I have accounts:
ManufacturerA
RetailerX
RetailerY
 
There is a custom object “Licence” consisting of:
Licence holder (an account e.g. RetailerY) with other licence details.
An account may have multiple licences.
 
I have a custom object “Retailer of” consisting of:
Manufacturer (account)
Retailer (account)
For example;
RetailerX is a retailer of ManufacturerA
RetailerY is a retailer of ManufacturerA
 
I want to report the licence data of retailers of a manufacturer.
 
Manufacturer: ManufacturerA:
               Retailer: RetailerX
                              Licence 001 …other details
   Licence 005 …other details
               Retailer: RetailerY
                              Licence 8097 …other details
                              Licence 8098 …other details
                              Licence 8099 …other details
                              Licence 8100 …other details


I have tried joined reports but haven't found a way to achieve it.
Please can anyone tell me how?
(I'm assuming I have structured the data in the only way possible using custom objects).

Does it require a VisualForce page?

Any suggestions and examples would be much appreciated.

Dave.
 
I would like some help with a fairly simple request: I have a process builder setup to run on opportunities. It works fine but only when the record is updated. I would like to have it run every day and execute if a field date on the record is matched to today's date. I don't want to set it to run in the future. Just an everyday event.
I tried forcing the execution with workflow rules updating a date field on the record but it doesn't work when the date is tomorrow or the following date. Nothing happens when the future date comes around.
Is there another trick I'm missing and I can't see a way to trigger this process builder?
Thanks in advance for your help!
The following formula is shoing an error. 
DATE( 
YEAR(CurrentEndDate__c + GracePeriod__c ),
(MONTH(CurrentEndDate__c + GracePeriod__c)+1), 
(1) 
)-1

CurrentEndDate__c = 11/30/2015
GracePeriod__c = 30

Please help!
  • December 09, 2015
  • Like
  • 0

Hi all, 

Looking for the formula to insert a value when either an account or opportunity name and record type name are selected. 

I was able to create a formula to insert an account name and the record type name separated with a -

Account.Name + ' - ' + $RecordType.Name

The result example is: ACME - Exterior Multichannel

However, now I want to enter an Opportunity into the formula and depending on which object this formula is pulling it from, Account or Opportunity, it should select the record type. 

This is my attempt in creating the formula but isn't working do to the incorrect synatx: 

(Account.Name + ' - ' + $RecordType.Name)||
(OpportunityName + ' - ' + $RecordType.Name)

Thank you in advance :)

Hello all,

I'm working towards my 201 certification and would like to start looking for Jr. Admin jobs.  The problem is that I've never been an Admin, so technically I have 0 years of practical Admin experience and I'm currently in an unrealted field (I'm a mortgage loan officer).  Every job posting I've read (on Indeed, Simply Hired, LinkedIn, etc) is requiring at least 2 years of Salesforce Admin experience, even for low-paying Jr. Admin or Admin assistant jobs.

It would stand to reason that before any given Admin became an Admin, they were not an Admin.  How were you able to get your 1st Jr Admin job if you got it after being in an unrelated field? (I do not have the time or resources to work for free at a non-profit for 2 years at this point in my career).

Thanks,

Chris

Hi All,

 

I did start with this thread: http://boards.developerforce.com/t5/General-Development/Install-Eclipse-Juno-4-2-with-Force-com-IDE/m-p/462323/highlight/true#M72103

 

But I am still running into the same problem. Here's my setup: 

 

Here's my setup

- Running Eclipse 4.2 as Admin (downloaded from here: http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/junor) and installed to desktop.

- JAVA_HOME set to C:\Program Files\Java\jdk1.7.0_05 (upgraded from jdk1.6.0_23) downloaded from http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1637583.html

- Tried installing the Force.com IDE from the Eclipse Marketplace and got this error:

 

Cannot complete the install because one or more required items could not be found.
  Software being installed: Force.com IDE 25.0.0.201206181021 (com.salesforce.ide.feature.feature.group 25.0.0.201206181021)
  Missing requirement: Force.com IDE 25.0.0.201206181021 (com.salesforce.ide.feature.feature.group 25.0.0.201206181021) requires 'org.eclipse.update.ui 0.0.0' but it could not be found

 

Have I installed something incorrectly or overlooked something?

When someone takes the time/effort to repspond to your question, you should take the time/effort to either mark the question as "Solved", or post a Follow-Up with addtional information.  

 

That way people with a similar question can find the Solution without having to re-post the same question again and again. And the people who reply to your post know that the issue has been resolved and they can stop working on it.