• skk169
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 12
    Questions
  • 6
    Replies

Hi,

 

What is Territory Management -Role hierarchy? In general, many companies use Territory Management -Role hierarchy or something else?

 

Plz help.

Thnks in advance

Hi,

 

I know, there r  3 SF releases per year.  Every year at which specific dates the new releases will be released? and the new releases will immediately impact the existing SF instance? or it will enhance after admin customizes/allows?

 

kindly let me know the detail procedure how it works..

 

Thnks in advance 

wat exactly an admin does in a company. I knw the tasks: "customization, security nd access, workflow rules, data validation etc..."   Below r my questions:

                                                                                                                                                                                                            Scenario: A small size company(say a construction company) with 50 users.

#1) how many admins required/ wat wil be the approx. team size ?     # 2) does 1 specific admin need to takecare of  ALL the tasks or will be focused on subset of tasks?       #3) Admin need to give/work 24/7 support?     #4) In general, an Admin reports to a Team leader/Sales director?       #5) Does Admin need to seek permission from anyone if he wants to install an application from Appexchange?

 

Kindly clarify my doubts nd educate me ..Thanks in advance

wat exactly an admin does in a company. I knw the tasks: "customization, security nd access, workflow rules, data validation etc..."   Below r my questions:

                                                                                                                                                                                                               Scenario: A small size company(say a construction company) with 50 users.

#1) how many admins required/ wat wil be the approx. team size ?     # 2) does 1 specific admin need to takecare of  ALL the tasks or will be focused on subset of tasks?       #3) Admin need to give/work 24/7 support?     #4) In general, an Admin reports to a Team leader/Sales director?       #5) Admin need to seek permission from anyone if he wants to install an application from Appexchange?

 

Kindly clarify my doubts nd educate me ..Thanks in advance

Hi all,

 

I need to create my own object, named thePeople with some basic fields such as firstName, lastName, email, company... By copying and modifying sample codes, I can create a form in Visualforce to enter data and then write down information of my object to server via Lead object, using Apex code. The Apex code looks like:

 

public class thePeople {

            private String firstName;
            private String lastName;
            private String company;
            private String email;
		...
            public PageReference save() {
                PageReference p = null;
                try {
                        Lead newlead = new Lead(LastName=this.lastName, 
                                                FirstName=this.firstName, 
                                                Company=this.company, 
                                                Email=this.email);
                        insert newlead;
                 } catch (Exception e) {
                        p = Page.failure;
                        p.getParameters().put('error', 'noInsert');
                 }
                
                if (p == null) {
                    p = Page.success;
                }
                
                p.setRedirect(true);
                return p;
            }
}

 

However, Lead object seems to be too redundant and heavy one to me. Furthermore, I don't want all information of my object can be seen in Lead tab. 

 

Thus my (first) question: can I write and read my own object only with only few fields instead of using standard ones? If yes, how (please give me a sample)?

 

Thanks in advance for any helps.

 

Tony