• OlTu
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 2
    Replies
Hi,
A customer of mine asked me a lot of question regarding licenses.
Unfortunatelly I could not find any information helping me to understand the licenses model.
We have 150 User Licenses of type "Salesforce".
What does it mean?
How many and which "Permission Set Licenses" and "Feature Licenses" did we get automatically?
Which "Permission Set Licenses" and "Feature Licenses" must be bought?
Thanks a lot for the explanation in advance!
 
  • July 10, 2018
  • Like
  • 0
Hi,

I'am getting headaches when reading documentation or examples about two-way-ssl with Salesforce.
Can anybody explain to me, what is the correct procedure?

We have build a web service residing on a third party tool.
Salesforce makes a SOAP callout.
So we have to set the "clientCertName_x" parameter.
Do we have to create a Self Signed Certificate in Salesforce and  set clientCertName_x using this Certificate?
Do we have to upload a certificate from the third party tool in Salesforce and reference this Certificate?

Thanks!
 
  • January 12, 2017
  • Like
  • 0
Hi,
I have implemented a webservice in Salesforce with the following parameters
webservice static void startSearch(  Organization Organization,
                                            Company Company,                                                             
                                            String Phone,
                                            String Email) {

The consumer got the corresponding WSDL containing the following information:
<xsd:sequence>
      <xsd:element name="Organization" type="tns:Organization" nillable="true"/>
      <xsd:element name="Company" type="tns:Company" nillable="true"/>
      <xsd:element name="Phone" type="xsd:string" nillable="true"/>
      <xsd:element name="Email" type="xsd:string" nillable="true"/>
 </xsd:sequence>
The consumer would like to have a possibility to send parameters in a various order.
Like:
<xsd:sequence>
      <xsd:element name="Phone" type="xsd:string" nillable="true"/>
      <xsd:element name="Email" type="xsd:string" nillable="true"/>
      <xsd:element name="Organization" type="tns:Organization" nillable="true"/>
      <xsd:element name="Company" type="tns:Company" nillable="true"/>
 </xsd:sequence>
OR
<xsd:sequence>
      <xsd:element name="Company" type="tns:Company" nillable="true"/>
      <xsd:element name="Phone" type="xsd:string" nillable="true"/>
      <xsd:element name="Organization" type="tns:Organization" nillable="true"/>
 </xsd:sequence>

Is it possible to modify the apex code in order to meet the requirement?

Thanks! 

  • January 12, 2017
  • Like
  • 0
Hi guys,
I've heard about Intellij Idea and am trying to configure it for Salesforce development.
Is there any guides how to this?
Actually I'm not able to get a project from my dev org. The following message appears "module must use an Illuminated Cloud SDK".

Thank you!
  • September 19, 2016
  • Like
  • 0
I have a CASE trigger assigning a specific assignment rule id using DML option.
This trigger works fine, when a user is editing cases.

Here are some lines of code:
-------------------------------------------
Database.DMLOptions dmlOpts = new Database.DMLOptions();
dmlOpts.assignmentRuleHeader.assignmentRuleId= idCaseAssignementRule;
caseObject.setOptions(dmlOpts);
update caseObject;

The same code does not function if a workflow rule updates the case!
I can see in debug log, that the setting of dml option is running and doing update. But the assignment rule is not fired.

Now, I start the same code in @future. And it's working fine. Assignment rule changed the case owner correctly.

What's happening here? How can I make this code working without @future?
  • April 04, 2014
  • Like
  • 0
Hi,
A customer of mine asked me a lot of question regarding licenses.
Unfortunatelly I could not find any information helping me to understand the licenses model.
We have 150 User Licenses of type "Salesforce".
What does it mean?
How many and which "Permission Set Licenses" and "Feature Licenses" did we get automatically?
Which "Permission Set Licenses" and "Feature Licenses" must be bought?
Thanks a lot for the explanation in advance!
 
  • July 10, 2018
  • Like
  • 0

Hey folks,

I'm writing a testclass for my Salesforce to Salesforce class. Here's the code so far:

 

public with sharing class sf42_TestClass
{
	public static testmethod void testAccountForwarding()
	{
		Test.startTest();
		Account a = sf42_TestDataGenerator.createTestAccount(1, true);
		Contact c = sf42_TestDataGenerator.createTestContact(1, a.Id, true);
		PartnerNetworkRecordConnection pnrc = [SELECT Status, LocalRecordId FROM PartnerNetworkRecordConnection WHERE LocalRecordId = :a.Id LIMIT 1];
		System.assertEquals(a.Id, pnrc.LocalRecordId);
		System.assertEquals('Invite', pnrc.Status);
		Test.stopTest();
	}
}

 How am I able to change the status 'Invite' to 'Accepted'?

EDIT: Sorry, I want to change it form 'invite' to 'Sent'!

 

Cheers

Josh