• its chantee
  • NEWBIE
  • 10 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 4
    Replies
Hi to All
 
I Have one doubt  whenever  we create a record on Account Object , while we enter the Billing Address Field Value  , The same Value as display the Mailing Address Without Clicking the Copy Billing Address to Shipping Address
I Done By using Triggers  by using Before Insert  Event it working
But I want it By using  After Insert Event Can Plse suggest  and give me Explanation also
 
Hi to all

senario : When Ever a record is creted in Student object , get the details in payment object also
student is parrent record && Payment is Child
Fields in Student
Student Name
Batch ( Lookup relation in Traing Object )
Fee
when u inserting the records student name , batch & Fee these fielda are display the payment object that aree student name  & Fee

 trigger studentregis on Student__c(After insert)
   {
        Student__c stu = trigger.New[0];
        Payment__C pay = New Payment__C (StudentName__c=pay.Name_c,
        StudentID = pay.ID,
                                      Batch__C      =pay.Batch__c,
                                      Fee__C       =pay.Fee__C);
             insert stu;
             
    }


Getting an error line 1 Column 1
                      
 
Hi All

I am new to sfdc
I am Practicing in Developer Edition
i have one requiremnt i wolud like to import data which in the format of PDF File
Is it possible to import data to sfdc for custom object & Data is more than 40000 records
Plse Share , How many ways we import / Upload in sfdc

 
Hi to All
 
I Have one doubt  whenever  we create a record on Account Object , while we enter the Billing Address Field Value  , The same Value as display the Mailing Address Without Clicking the Copy Billing Address to Shipping Address
I Done By using Triggers  by using Before Insert  Event it working
But I want it By using  After Insert Event Can Plse suggest  and give me Explanation also
 
Hi to all

senario : When Ever a record is creted in Student object , get the details in payment object also
student is parrent record && Payment is Child
Fields in Student
Student Name
Batch ( Lookup relation in Traing Object )
Fee
when u inserting the records student name , batch & Fee these fielda are display the payment object that aree student name  & Fee

 trigger studentregis on Student__c(After insert)
   {
        Student__c stu = trigger.New[0];
        Payment__C pay = New Payment__C (StudentName__c=pay.Name_c,
        StudentID = pay.ID,
                                      Batch__C      =pay.Batch__c,
                                      Fee__C       =pay.Fee__C);
             insert stu;
             
    }


Getting an error line 1 Column 1