• SathishKumar
  • NEWBIE
  • 0 Points
  • Member since 2016
  • Developer

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 3
    Replies
Hi All,

I have a object called Interaction which has selflookup relationship and relation ship name is parent. Interaction also has child object participant. Now, assume one interaction has several child interactions. I want to copy participant records from parent to child interation.
Please help me with the algorithm or psuedo code to implement this requirement.

Thanks in advance
I have 2 objects Account and Contract(custom).
On Account i have created custom field Email to capture email address.
Account is master and Contract is child.
Contract is having a picklist called status which has 2 values(Pending, Executed) and date field.
Now i want to trigger a email alert to Account's email, if the contract status is pending.
Email alert to be triggered before 2, 5 and 10 days of date value.

I have created required email template.
created work flow rule on Contract, evaluation criteria is (Contract:  StatusNOT EQUAL TOExecuted).
While creating Email alert on HCP contract i am unable to see Account's Email field(custom).
Any help is appreciated.
Thanks in advance.
Hi guys,

I want to devlop a vf page where i can create records in Account, opportunity and Contact. Opportunity and contact records must be associated with the Account.

Thanks in advance.
Hi All,

I am completely new to Apex and visualforce progamming.
I was trying to develop a visualforce page, which accepts values and i am trying to display the accepted values in debug screen.

I ve written the following vf page:
<apex:page controller="setExample">
    <apex:form>
    <apex:outputLabel>Enter u r name</apex:outputLabel>
       <apex:inputText value= "{!name}" />
        <apex:commandButton value="Click" rerender="one"/>
         <apex:outputLabel id="one">Name is {!name} </apex:outputLabel>
    
    </apex:form>
</apex:page>

and below controller

global class setExample {
    
    public String name;
    public Integer age;
    
    public void setName(String name){
        
        this.name = name;
        System.debug('Name ='+name);
    }
    
    public void setAge(Integer age){
        
        this.age = age;
        System.debug('Age is '+age);
    }

}

i am getting following error


Unknown property 'setExample.name'

Please guide me, where am i going wrong.

Thanks in advance
I have 2 objects Account and Contract(custom).
On Account i have created custom field Email to capture email address.
Account is master and Contract is child.
Contract is having a picklist called status which has 2 values(Pending, Executed) and date field.
Now i want to trigger a email alert to Account's email, if the contract status is pending.
Email alert to be triggered before 2, 5 and 10 days of date value.

I have created required email template.
created work flow rule on Contract, evaluation criteria is (Contract:  StatusNOT EQUAL TOExecuted).
While creating Email alert on HCP contract i am unable to see Account's Email field(custom).
Any help is appreciated.
Thanks in advance.
User-added image

I have created a permission set with the system permission "Two-Factor Authentication for User Interface Logins" and assigned it to the Samantha Cordero users. Here is the login history which i have used the Authenticator to authenticate the login of the user.

User-added image
What else am i missing? Any help is much appreciated.

Hello All,

 

Is it possible to query the storage limit of each org? Is it possible to also query how much of it is being used? I've looked in all the obvious places ($organization) and the docs. All I can find is this information displayed in the UI under company profile, but I would like to access this information programatically.

 

Thanks!
yad 

  • December 03, 2012
  • Like
  • 0