• Saurabh Kulkarni 20
  • NEWBIE
  • 30 Points
  • Member since 2015

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 7
    Replies
Hello Guys

Im a bit of a newbie here so I need your help. I am currently working on a POC on Salesforce and I want to know what the best way is to go about connecting to that salesforce account, creating, updating, or deleting records via a third party api. I dont want to build a java app or anything to do so. It should be like a remote call to do what I need to do to the objects.

Any reference to documentation I can look at or guides will be appreciated
Hello All,

I'm new to the Salesforce Canvas concept.. I just wanted to know that whether we can integrate an existing web based application using salesforce canvas.. However I dont want to go through the Heroku platform... because Heroku asks for the app to be developed in their system..
What if I already have an app which I can use to directly integrate with salesforce using Salesforce canvas..

Also is there any public app which I can try out to integrate to Salesforce using canvas?
Any help will be appreciated!

Regards,
Saurabh 
Hello All,

I was trying to update an exsting profile with few permissions to the custom object but I was getting some errors while doing these...
I also tried creating a new profile throgh APIs but it doesn't worked.

Below is the snippet of my code.. Please let mw know if I'm missing something in this code...
 
ProfileObjectPermissions pObj = new ProfileObjectPermissions();
		
		pObj.setAllowCreate(true);
		pObj.setAllowEdit(true);
		pObj.setAllowDelete(true);
		pObj.setObject("Accounts");
		pObj.setModifyAllRecords(true);
		
Profile p = new Profile();
		
		p.setObjectPermissions(new ProfileObjectPermissions[] {pObj});
		p.setCustom(true);
		p.setUserLicense("Salesforce Platform");
		p.setFullName("TestClient1");

//For Update I used....
SaveResult[] results = metadataConnection.updateMetadata(new Metadata[]{p});

//For Create I used...
SaveResult[] results = metadataConnection.CreateMetadata(new Metadata[]{p});

However, If i try to creat a custom field with same logic, it gets created...
But creating or updating a profile fails everytime...

Please advise with a solution

Thanks in advance!
Saurabh 
 
Hi All,


I want to integrate salesforce to dotnet.
By which by using webform insert a account record.
i am new to salesforce integration (SOAP API)


 
Hello All,

I'm new to the Salesforce Canvas concept.. I just wanted to know that whether we can integrate an existing web based application using salesforce canvas.. However I dont want to go through the Heroku platform... because Heroku asks for the app to be developed in their system..
What if I already have an app which I can use to directly integrate with salesforce using Salesforce canvas..

Also is there any public app which I can try out to integrate to Salesforce using canvas?
Any help will be appreciated!

Regards,
Saurabh 
Hello All,

I was trying to update an exsting profile with few permissions to the custom object but I was getting some errors while doing these...
I also tried creating a new profile throgh APIs but it doesn't worked.

Below is the snippet of my code.. Please let mw know if I'm missing something in this code...
 
ProfileObjectPermissions pObj = new ProfileObjectPermissions();
		
		pObj.setAllowCreate(true);
		pObj.setAllowEdit(true);
		pObj.setAllowDelete(true);
		pObj.setObject("Accounts");
		pObj.setModifyAllRecords(true);
		
Profile p = new Profile();
		
		p.setObjectPermissions(new ProfileObjectPermissions[] {pObj});
		p.setCustom(true);
		p.setUserLicense("Salesforce Platform");
		p.setFullName("TestClient1");

//For Update I used....
SaveResult[] results = metadataConnection.updateMetadata(new Metadata[]{p});

//For Create I used...
SaveResult[] results = metadataConnection.CreateMetadata(new Metadata[]{p});

However, If i try to creat a custom field with same logic, it gets created...
But creating or updating a profile fails everytime...

Please advise with a solution

Thanks in advance!
Saurabh 
 
Hello Guys

Im a bit of a newbie here so I need your help. I am currently working on a POC on Salesforce and I want to know what the best way is to go about connecting to that salesforce account, creating, updating, or deleting records via a third party api. I dont want to build a java app or anything to do so. It should be like a remote call to do what I need to do to the objects.

Any reference to documentation I can look at or guides will be appreciated