0
votes

I am trying to write a custom object and have to retrieve one custom related field from custom object Course Master(master) to detail object Training deals. This code is showing error

 List<List<String>> strList = new List<List<String>>();
    List<Training_deal__c> td = [select name,   Course_master__r.course__c from Training_deal__c];

    for(Training_deal__c t : td){
        List<String> tempList = new List<String>();
        tempList.add('Training Deals');
        tempList.add(t.name);
        tempList.add(t.course__c);
        strList.add(tempList);
    }
2

2 Answers

0
votes

Try This

tempList.add(t.Course_master__r.course__c);
0
votes

I tried to like this and it is working properly

List<List<String>> strList = new List<List<String>>();
List<Training_deal__c> td = [select name,   Course_master__r.course__c from Training_deal__c];

for(Training_deal__c t : td){
    List<String> tempList = new List<String>();
    tempList.add('Training Deals');
    tempList.add(t.name);
    tempList.add(t.Course_master__r.course__c);
    strList.add(tempList);
}