• red24
  • NEWBIE
  • 0 Points
  • Member since 2006
  • Master Business Architect
  • Salesforce.com

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 4
    Replies
If I am using lightning connect to bring data over from ERP (Great Plains) into Salesforce.  Could I render that data into a pdf using visualforce and apex?  
  • April 20, 2015
  • Like
  • 1

I haven't coded in a while and need some help with enforcing a dependent picklist relationship. 

 

 

What tags do I need in conjuntion with

 

<apex:outputLabel value="Industry Type" for="Industry_Type"/>
<apex:inputfield id="Industry_Type" value="{!account.Industry_Type__c}"/>
<apex:outputLabel value="Industry ISIS" for="Industry_ISIS"/>
<apex:inputfield id="Industry_ISIS" value="{!account.Industry_ISIS__c}"/>
 

Thanks,
Tim

  • September 27, 2009
  • Like
  • 0
If I am using lightning connect to bring data over from ERP (Great Plains) into Salesforce.  Could I render that data into a pdf using visualforce and apex?  
  • April 20, 2015
  • Like
  • 1
I am having trouble completing the challenge for the "Create and Edit Lightning Components" module of the "Lightning Components Basics" trail. Here is the challenge:

Create a camping component that contains a campingHeader and a campingList component.
    The campingList component contains an ordered list of camping supplies that include Bug Spray, Bear Repellant, and Goat Food.
    The campingHeader component contains an H1 heading style with a font size of 18 points and displays 'Camping List'.

Here is my code:

camping.cmp

<aura:component >   
    <c:campingHeader/>
    <c:campingList/>
</aura:component>

campingHeader.cmp

<aura:component >
    <H1>Camping List</H1>
</aura:component>

campingHeader.css

.THIS {
}

H1.THIS {
    font-size: 18px;
}

campingList.cmp

<aura:component >
    <aura:attribute name="campingSupplies" type="List" default="['Bear Repellant', 'Bug Spray', 'Goat Food']" />
</aura:component>

When I check the challenge, I get the error message:

Challenge Not yet complete... here's what's wrong:
The component is not using the correct font size.

Any help is greatly appreciated.
I was trying to do this on Smartsheet but it will only create a gantt chart for a specific opportunity or account, etc.

How do you create a gantt chart that displays multiple opportunities? Essentially linking fields such as Opportunity Name, Start Date, Finish Date and % Complete of multiple opportunities in one gantt chart to show an operations schedule.
  • February 23, 2015
  • Like
  • 0

We have a project to move some of our paper processes to electronic processes

We've gotten the Salesforce white paper on the topic and still have some questions

 

Namely, how did you enforce the e-signature?

Do you have users re-authenticate when approving?

Do you use a component or third party to process e-signatures?

What kind of timeline and cost was associated with deploying that?

 

There are other interpretation questions, but the big hurdle (as I see it) is the electronic signature

 

I am working on a application where I need to import HL7 messages from different applications.

Does salesforce support HL7 functionality.

Has anybody worked on it.

Also let me know if there is any third party tools available for this.