There is a user field called UF_TASK_EFFICIENCY called Responsiveness.
How to display this signature in the right place, having XML_ID it?
There is a user field called UF_TASK_EFFICIENCY called Responsiveness.
How to display this signature in the right place, having XML_ID it?
Use the CUserTypeEntity :: GetList method to get information on custom fields. For example, in your case it will turn out like this:
$fieldName = ""; $rsUserField = CUserTypeEntity::GetList( [], [ 'XML_ID' => 'UF_TASK_EFFICIENCY' ] ); if($arUserField = $rsUserField->Fetch()) { $fieldName = $arUserField['FIELD_NAME']; } Source: https://ru.stackoverflow.com/questions/819735/
All Articles