Microsoft Dynamics 4.0
kernel version 4.0.2501.116
application version 4.0.2501.347
На таблице EmplLedger_RU метод find объявлен как private — зачем, может кто нибудь разъяснить?
X++:
private static EmplLedger_RU find(EmplPostingProfile_RU _emplPostingProfile,
boolean _forUpdate = false)
{
EmplLedger_RU emplLedger;
if (_emplPostingProfile)
{
emplLedger.selectForUpdate(_forUpdate);
select firstonly emplLedger
where emplLedger.PostingProfile == _emplPostingProfile;
}
return emplLedger;
}