function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
shravani milshravani mil 

my hyper link is not displaying any records

Hi i want to display user records by clicking hyper link but its showing url not exists here is my lines

 <apex:outputlink value="/{!ration__c.ep_Name__r.Name}__{!ration__c.Name}">{!ration__c.ep_Name__r.Name}__{!ration__c.Name} </apex:outputlink>  
bob_buzzardbob_buzzard
It seems quite likely that would cause a problem - {!ration__c.ep_Name__r.Name}__{!ration__c.Name} needs to render as a 15 character id in order to display records, but this looks like the user friendly name. I reckon you just need {!ration__c.Id}
shravani milshravani mil
Hi bob how to use that