Table find method to find item id's in x++
static BASTradeAgreementTable find(ItemId itemId, boolean _forUpdate = false, ConcurrencyModel _concurrencyModel = ConcurrencyModel::Auto) { BASTradeAgreementTable basTradeAgreementtable; if (itemId) { if (_forUpdate) { basTradeAgreementtable.selectForUpdate (_forUpdate); if (_concurrencyModel != ConcurrencyModel::Auto) { ...