public with sharing class LexInventoryHeaderController { @AuraEnabled public static LostReport__c init(String recordId){ LostReport__c lp = [SELECT Id, Asset__c from LostReport__c WHERE Id = :recordId]; return lp; } }