I'm new to integration with Netsuite. I've created a custom record and some fields along with values in Netsuite app, now I want to get those values from Webservice request. I'm getting labels, but I'm unable to get values.
CustomRecordType record = (CustomRecordType)response.getRecord();
CustomRecordTypeFieldList fields = record.getCustomFieldList();
CustomRecordCustomField[] crcf = fields.getCustomField();
for(CustomRecordCustomField c:crcf)
{
System.out.println(c.getLabel());
}