Hi
I have created an entity as shown below


and trying to read the Entity using below code. But none of them are working
context.webAPI.retrieveRecord("aaa1s","4661b90a-028c-e911-a84e-000d3ae02142","?$select=name").then(
function success(result){
alert(result.name);
},
function (error){
console.log(error.message);
});
context.webAPI.retrieveRecord("aaa1","4661b90a-028c-e911-a84e-000d3ae02142","?$select=name").then(
function success(result){
alert(result.name);
},
function (error){
console.log(error.message);
});
context.webAPI.retrieveRecord("crf65_aaa1s","4661b90a-028c-e911-a84e-000d3ae02142","?$select=crf65_name").then(
function success(result){
alert(result.crf65_name);
},
function (error){
console.log(error.message);
});