All Questions
0
votes
0answers
2 views
Is there an Apex wrapper available for the ExactTarget API?
ExactTarget Marketing Cloud seems to have a comprehensive SOAP API and have SDKs in Java, .NET, PHP and Ruby for that. I am wondering if there is a SDK built for Apex. I don't see it available on the ...
0
votes
1answer
8 views
Unknown property 'LeadStandardController.Customer_Name__c'
Good day I am encountering the error below:
'LeadStandardController.customerName'
Basically I want to upload a record that has already been created.
Please find below my code:
VF Page
<apex:...
0
votes
0answers
2 views
Wave analytics Kpi Calculation
In wave analytics i have a dataset where I have different stores with their total sales values grouped by dates(2015,2016).I wanted to claculate the difference between total sales amount in a ...
1
vote
1answer
13 views
Can we add a space while using field sets in salesforce
Is there any way to add blank space while using field sets in vf page.
Regards
0
votes
1answer
12 views
how to generate record from PDF in salesforce?
Consider, if we have attachment added to "Quote" object and we need to generate "order" object record from attached quote PDF based on trigger or anything.
Is it possible in salesforce to read the ...
1
vote
1answer
9 views
Isolate specific number from 13-character number using formula field
We're receiving a 13-character number from SAP. The number will start with 0's until the actual number starts. The last 3 digits will always be 0 and correspond to the decimals.
For example, the ...
0
votes
1answer
15 views
Page break with every repeat loop
I am generating a pdf which group accounts first by Country and then by property.
For this i have used nested repeat tag.I want a page break for every country i.e. a page break for every outer repeat ...
1
vote
1answer
36 views
Lightning Design System, how to start development?
I am trying to learn LDS development and am using this resource to start.
Unfortunately, I am stuck HERE (I have an org with my own namespace, I have copied over the Lightning component and set its ...
1
vote
2answers
19 views
Displaying Standard fields labels in vf page
Can we display standard fields labels in vf page by using
<apex:column headervalue="{!$ObjectType.ABC__c.Fields.CreatedBy.Label}"> ?
0
votes
1answer
20 views
Invalid bind expression type of Integer for column of type String
Integer BPcurrentYear = System.Today().year();
List<Business_Plan__c> lBPs = [Select b.Year__c, b.FCPA_Last_Updated__c,
(Select Name,IsHQ__c
FROM Business_Plan_Details__r ...
1
vote
0answers
10 views
Help to Navigate to other Native App from Lightning Component
Is there any way to navigate to other Native App from Lightning Component?
eg. I've a Facebook Button on my Lightning Component. On Click of button, it should navigate to Facebook Mobile App. Is it ...
0
votes
0answers
21 views
Post Apex Request
I want to make an post apex request.
The info i have is post endpoint and post body, I have successfully make the chatter api hits for our community but i don't know how to make an apex request.
In ...
1
vote
1answer
17 views
Getting Attempt to de-reference a null object in DOMParser in salesforce
I wrote a class which given below.
public class DomDocument {
Public void parseXmlFile(String xml){
Dom.Document doc=new Dom.Document();
doc.load(xml);
Dom.XmlNode node=...
0
votes
0answers
10 views
Sending Email to Opportunity team Members (people present in the list) found on Opportunity
I need help on the above mention subject area.
Actually, I am working with a batch.
I have a object Contrat__c which is related to an opportunity by a lookup field ...
0
votes
1answer
10 views
How to Fetch a html form's Post variables using AMPSCRIPT and create a record with the values in salesforce objects
I have a html web form which have input fields in it and when a customer fills in the form and clicks on submit, i want the input values to be taken into some data extension in marketing cloud [...