• Rahul 37
  • NEWBIE
  • 20 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 10
    Replies

Hi,

I want to developer a business application like Gmail.

so if i use community site but url showing last www.abc.salesforce.com but i want to create my own custom url like www.abc.com.

So is it possible to create and developer own custom url ?

 

Thanks

Hi,

I am new in Salesforce, Can you please guide me.

Which application can create in salesforce platform.

I am just curious and which licence required to developer a application in salesforce example:- when user visit my site and buy something like Flipkart

And If i create any application in salesforce, we need to buy server or simply buy salesforce licence and run my application ?

When Primary Contact  is True then only selected Contact address is same as Account address

 

trigger UpdateAddress on Contact (after update) {
    Set<Id> contactIds = new Set<Id>();
    for (Contact a : Trigger.new) {
        Contact old = Trigger.oldMap.get(a.Id);
        if (a.BillingStreet != old.BillingStreet || ...) {
            contactIds.add(a.Id);
        }
    }
    if (contactIds.size() > 0) {
        Account[] updates = [
                select Id, AccountId
                from Account
                where AccountId in :contactIds
                ];
        for (Account c : updates) {
            Contact a = Trigger.newMap.get(c.ContactId);
            c.BillingStreet = a.BillingStreet;
            ...
        }
        update updates;
    }
}

Hi,

I want to developer a business application like Gmail.

so if i use community site but url showing last www.abc.salesforce.com but i want to create my own custom url like www.abc.com.

So is it possible to create and developer own custom url ?

 

Thanks

Hi,

I want to developer a business application like Gmail.

so if i use community site but url showing last www.abc.salesforce.com but i want to create my own custom url like www.abc.com.

So is it possible to create and developer own custom url ?

 

Thanks

Hi,

I am new in Salesforce, Can you please guide me.

Which application can create in salesforce platform.

I am just curious and which licence required to developer a application in salesforce example:- when user visit my site and buy something like Flipkart

And If i create any application in salesforce, we need to buy server or simply buy salesforce licence and run my application ?

When Primary Contact  is True then only selected Contact address is same as Account address

 

trigger UpdateAddress on Contact (after update) {
    Set<Id> contactIds = new Set<Id>();
    for (Contact a : Trigger.new) {
        Contact old = Trigger.oldMap.get(a.Id);
        if (a.BillingStreet != old.BillingStreet || ...) {
            contactIds.add(a.Id);
        }
    }
    if (contactIds.size() > 0) {
        Account[] updates = [
                select Id, AccountId
                from Account
                where AccountId in :contactIds
                ];
        for (Account c : updates) {
            Contact a = Trigger.newMap.get(c.ContactId);
            c.BillingStreet = a.BillingStreet;
            ...
        }
        update updates;
    }
}