From Clomosy Docs
function Clomosy.ClomosyID :Integer;
There are two different mobile applications for Clomosy: Clomosy CRM and Clomosy Learn. This feature is used to determine which application you are using. A return value of 0 means that the project was accessed through Clomosy CRM, while a value of 1 indicates that the project was accessed through Clomosy LEARN.
Example
var
appState : Integer;
{
appState = Clomosy.ClomosyID;
case appState of
{
0 : ShowMessage('Clomosy CRM');
1 : ShowMessage('Clomosy Learn');
}
}