Вот с первыми 2-мя пунктами понятно:
$aInforSystem = array('1', '20', '30');
$oCore_QueryBuilder_Select = Core_QueryBuilder::select()
->from('informationsystem_items')
->where('informationsystem_id', 'IN', $aInforSystem)
->orderBy('sorting', 'DESC')
->limit(30);
$aRows = $oCore_QueryBuilder_Select->execute()->asAssoc()->result();
А вот как сформировать RSS с помощью Core_Rss не пойму...