I have created two entities, RequestManagement and Requestlist, with a one-to-many relationship between them. I would like to retrieve all the names from the corresponding records in Requestlist and concatenate them into a single string.
Announcement
Collapse
No announcement yet.
how to retrieve all the names from the corresponding records?
Collapse
X
-
how to retrieve all the names from the corresponding records?
I have created two entities, RequestManagement and Requestlist, with a one-to-many relationship between them. I would like to retrieve all the names from the corresponding records in Requestlist and concatenate them into a single string.Tags: None
-
Hi there,
You can do this
PHP Code:$entity->get('relationNameNames');
base on (https://docs.espocrm.com/administrat...ing/#attribute)
Regards,
Firyo.
Comment