search_doffin
Search Norwegian public procurement notices on Doffin.
Direct GET
For navigating agents: open the HTML page with parameters in the URL. The result is fetched and displayed without screenshots or form filling.
Open this validated HTML GET URL
https://allemannsdata.com/wiki/kilder/doffin/search_doffin/?query=&types={types}&statuses={statuses}&contract_nature={contract_nature}&cpv_codes={cpv_codes}&locations={locations}&buyer={buyer}&winner={winner}&date_from={date_from}&date_to={date_to}&sort_by=RELEVANCE&page=1&hits_per_page=10&include_placeholders=false&limit=25&offset=0
For software and dashboards:
Read the operation descriptor.
The JSON GET template is https://allemannsdata.com/wiki/api/v1/kilder/doffin/search_doffin?query=&types={types}&statuses={statuses}&contract_nature={contract_nature}&cpv_codes={cpv_codes}&locations={locations}&buyer={buyer}&winner={winner}&date_from={date_from}&date_to={date_to}&sort_by=RELEVANCE&page=1&hits_per_page=10&include_placeholders=false&limit=25&offset=0.
Open this exact request as JSON.
| Parameter | Requirement | JSON type | Description |
|---|---|---|---|
query | optional | string | Free-text search (Norwegian or English), e.g. "IT-drift", "snørydding", "rammeavtale konsulent". Start here. |
types | optional | union | Filter by notice type. Parent types: PLANNING, COMPETITION, RESULT. Specific types: ANNOUNCEMENT_OF_COMPETITION, DYNAMIC_PURCHASING_SCHEME, QUALIFICATION_SCHEME, ANNOUNCEMENT_OF_INTENT, PRE_ANNOUNCEMENT, ADVISORY_NOTICE, NOTICE_ON_BUYER_PROFILE, ANNOUNCEMENT_OF_CONCLUSION_OF_CONTRACT, CHANGE_OF_CONCLUSION_OF_CONTRACT, CANCELLED_OR_MISSING_CONCLUSION_OF_CONTRACT. Use ["COMPETITION"] + statuses=["ACTIVE"] for open tenders. |
statuses | optional | union | ACTIVE (open for bids), EXPIRED, AWARDED, CANCELLED. |
contract_nature | optional | union | WORKS, SERVICES and/or SUPPLIES. |
cpv_codes | optional | union | 8-digit CPV codes, e.g. ["45000000"]. Matches the code and its children. Find codes with search_cpv_codes(). Best combined with a free-text query. |
locations | optional | union | NUTS-style location ids, e.g. ["NO060"] (Trøndelag), or "anyw" for non-location-bound. See list_location_codes(). |
buyer | optional | union | Buyer organization full name(s) exactly as written on notices, e.g. ["Trondheim kommune"]. Resolved to Doffin's internal buyer id via a free-text lookup; names that match no buyer are reported in "note" and, if none match, no results are returned (rather than an unfiltered search). Pass the 32-hex buyer id from a result's buyer field directly to skip the lookup. |
winner | optional | union | Doffin's internal supplier id (32-hex). Winner names cannot be used - they are not present in search results to resolve against. |
date_from | optional | union | Publication date lower bound, "YYYY-MM-DD". |
date_to | optional | union | Publication date upper bound, "YYYY-MM-DD". |
sort_by | optional | string | RELEVANCE (default), PUBLICATION_DATE_DESC, PUBLICATION_DATE_ASC, DEADLINE, ESTIMATED_VALUE_ASC, ESTIMATED_VALUE_DESC. |
page | optional | integer | 1-based page number. |
hits_per_page | optional | integer | 1-50 (default 10). |
include_placeholders | optional | boolean | By default, hits whose buyer fields look like unfilled eForm template values (org id 123456789, placeholder buyer names) are dropped from the results as junk. Set True to keep them, each flagged with "possible_placeholder": true. |
limit | optional | integer | Gateway page size; default 25, maximum 100. |
offset | optional | integer | Number of list items to skip; default 0. |
Generated JavaScript, Python and response structure
Use JSON when the user requests code, machine-readable data, value extraction or further computation. Use the HTML GET page to identify the correct source and verify parameters.
Example for generated JavaScript and Python
https://allemannsdata.com/wiki/api/v1/kilder/doffin/search_doffin?query=&types={types}&statuses={statuses}&contract_nature={contract_nature}&cpv_codes={cpv_codes}&locations={locations}&buyer={buyer}&winner={winner}&date_from={date_from}&date_to={date_to}&sort_by=RELEVANCE&page=1&hits_per_page=10&include_placeholders=false&limit=25&offset=0
Replace URL placeholders and remove unused optional parameters.
JavaScript in a dashboard
const url = "https://allemannsdata.com/wiki/api/v1/kilder/doffin/search_doffin?query=&types={types}&statuses={statuses}&contract_nature={contract_nature}&cpv_codes={cpv_codes}&locations={locations}&buyer={buyer}&winner={winner}&date_from={date_from}&date_to={date_to}&sort_by=RELEVANCE&page=1&hits_per_page=10&include_placeholders=false&limit=25&offset=0";
const response = await fetch(url);
if (!response.ok) {
const failure = await response.json();
throw new Error(`${failure.error.code}: ${failure.error.message} ${failure.suggestion}`);
}
const result = await response.json();
const data = result.data;
Python without additional packages
import json
from urllib.request import urlopen
url = "https://allemannsdata.com/wiki/api/v1/kilder/doffin/search_doffin?query=&types={types}&statuses={statuses}&contract_nature={contract_nature}&cpv_codes={cpv_codes}&locations={locations}&buyer={buyer}&winner={winner}&date_from={date_from}&date_to={date_to}&sort_by=RELEVANCE&page=1&hits_per_page=10&include_placeholders=false&limit=25&offset=0"
with urlopen(url) as response:
result = json.load(response)
data = result["data"]
Response structure
{
"source": "doffin",
"operation": "search_doffin",
"parameters": {},
"data": {},
"entities": [],
"_meta": {"retrieved_at": "...", "sources": [], "cache": {}},
"_links": {"self": "...", "source": "...", "wiki": "...", "feedback": "..."}
}
Form for manual use
The form is a fallback for people and browser agents that cannot open the GET URL directly.
Result
- total_count:
- 11
- hits:
10 results
- id:
- 2022-345116
- buyer:
1 results
- id:
- b31edd15b34adf60e1dcaed70e028667
- organization_id:
- 920717152
- name:
- INNLANDET FYLKESKOMMUNE
- heading:
- Sol og vindturbin stasjon for opplæringsformål
- description:
- Innlandet fylkeskommune har derfor til intensjon å inngå kontrakt med Instrutek AS på 8 stk. sol og vind turbin stasjoner for opplæringsformål. Etter å ha undersøkt og forespurt markedet om informasjon gjennom å kunngjøre en "Forespørsel om informasjon(RFI)", er oppdragsgiver av den oppfatning at er kun én aktuell tilbyder i markedet som dekker vårt behov. Frist for å komme med innsigelser: 20.06.2022.
- location_id:
1 results
- NO020
- estimatedValue:
- not reported by source
- type:
- ADVISORY_NOTICE
- allTypes:
2 results
- ADVISORY_NOTICE
- PLANNING
- status:
- not reported by source
- issueDate:
- 2022-06-10T10:00:00Z
- deadline:
- not reported by source
- sentToTed:
- no
- publicationDate:
- 2022-06-10
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2017-789814
- buyer:
1 results
- id:
- eefd509c805df4b5bbc861f14aab6289
- organization_id:
- 959923086
- name:
- ATS Gjøvik/Toten AS
- heading:
- ATS Gjøvik/Toten AS - Nytt kaldtlager
- description:
- ATS Gjøvik/Toten AS skal innhente tilbud på totalentreprise for bygging av et nytt lager bygg i Hunndalen i Gjøvik kommune, Damsletta 4, gnr/bnr 69/828. Lagerbygget skal bygges som et kaldt lager med hensikt og beskytte varer mot vær og vind. Kaldt lageret består av en større og en mindre del som til sammen skal være 600 kvm i grunnflate.
- location_id:
No results.
- estimatedValue:
- currencyCode:
- NOK
- amount:
- 5000000.0
- type:
- ANNOUNCEMENT_OF_COMPETITION
- allTypes:
2 results
- ANNOUNCEMENT_OF_COMPETITION
- COMPETITION
- status:
- EXPIRED
- issueDate:
- 2017-08-22T10:00:00Z
- deadline:
- 2017-09-20T11:00:00Z
- sentToTed:
- no
- publicationDate:
- 2017-08-22
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2022-316458
- buyer:
1 results
- id:
- b7a668833aa45b13f415f7371f08d1bd
- organization_id:
- 918 276 467
- name:
- Spordrift AS
- heading:
- Anskaffelse av Rammeavtale på kursing av personell i bruk av fallsikringsutstyr
- description:
- Spordrift sine ansatte benytter fallsikringsutstyri forbindelse med utførelse av daglig arbeid. Spordrift trenger derfor rammeavtale(r) som skal sikre opplæring av personell slik at Spordrift er i henhold til gjeldende lover og regler. Spordrift har aktivitet der det er jernbaneinfrastruktur, dette innebærer at leverandøren må ha en geografisk kapasitet til å levere de etterspurte tjenestene på de aktuelle lokasjonene.
- location_id:
1 results
- anyw
- estimatedValue:
- not reported by source
- type:
- ANNOUNCEMENT_OF_CONCLUSION_OF_CONTRACT
- allTypes:
2 results
- RESULT
- ANNOUNCEMENT_OF_CONCLUSION_OF_CONTRACT
- status:
- not reported by source
- issueDate:
- 2022-02-11T10:00:00Z
- deadline:
- not reported by source
- sentToTed:
- yes
- publicationDate:
- 2022-02-11
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2022-661819
- buyer:
1 results
- id:
- 9aef4e0344cad89997cd1399486a6d66
- organization_id:
- 971349077
- name:
- Havforskningsinstituttet
- heading:
- 22/03380 - WBAT med tilbehør
- description:
- Intensjonskunngjøring: Kjøp av WBAT med tilbehør og to transdusere fra Kongsberg Maritime AS.
- location_id:
No results.
- estimatedValue:
- not reported by source
- type:
- ADVISORY_NOTICE
- allTypes:
2 results
- ADVISORY_NOTICE
- PLANNING
- status:
- not reported by source
- issueDate:
- 2022-12-02T10:00:00Z
- deadline:
- not reported by source
- sentToTed:
- no
- publicationDate:
- 2022-12-02
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2019-347341
- buyer:
1 results
- id:
- 24f5002b4816434bef14ce06b9b57b12
- organization_id:
- 940101808
- name:
- Tromsø Kommune
- heading:
- Taksering av vindkraftanlegg - Kvaløya - Tromsø kommune
- description:
- Tromsø kommune skal kjøpe takseringstjeneste for fastsetting av eiendomsskattetakst for to vindkraftanlegg. Takseringen skal skje i henhold til bestemmelsene i Eigedomsskattelova. Tromsø kommune har vedtatt at det skal utliknes eiendomsskatt på samtlige eiendommer i kommunen, kommunestyrevedtak 167/18. Etter Eigedomsskattelova §8 A-2, skal skattetakst på vindkraftanlegg settes til teknisk verdi eller avkastningsverdi.
- location_id:
No results.
- estimatedValue:
- not reported by source
- type:
- ANNOUNCEMENT_OF_COMPETITION
- allTypes:
2 results
- ANNOUNCEMENT_OF_COMPETITION
- COMPETITION
- status:
- EXPIRED
- issueDate:
- 2019-10-22T10:00:00Z
- deadline:
- 2019-11-08T10:00:00Z
- sentToTed:
- yes
- publicationDate:
- 2019-10-22
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2021-327626
- buyer:
1 results
- id:
- 7bafa0b72bfbaaf7bb4d2159b5e1975a
- organization_id:
- 964 338 531
- name:
- Bergen kommune
- heading:
- Intensjonskunngjøring - kjøp av analyseprogram
- description:
- I henhold til forskrift om offentlige anskaffelser (FOA) § 8-18 opplyses det om at Bergen kommune ved Plan- og bygningsetaten har intensjon om å inngå rammeavtale om kjøp av skybasert analyseprogram for arealplanlegging. Avtalen har et estimert omfang på kr 370 000,- per år. Omfanget kan bli høyere dersom kommunen ser behov for flere lisenser. Maksimal totalverdi på fire år er 2 MNOK.
- location_id:
2 results
- NO0
- NO0A2
- estimatedValue:
- not reported by source
- type:
- ADVISORY_NOTICE
- allTypes:
2 results
- ADVISORY_NOTICE
- PLANNING
- status:
- not reported by source
- issueDate:
- 2021-11-03T10:00:00Z
- deadline:
- not reported by source
- sentToTed:
- no
- publicationDate:
- 2021-11-03
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2021-399406
- buyer:
1 results
- id:
- 0cc8306fa5e7dcfc5c8789908b4e1444
- organization_id:
- 964 994 307
- name:
- VÆRØY KOMMUNE
- heading:
- Driftstjenester renovasjon, vedlikehold vei, brøyting, logistikk og løfting, pukkverksprodukt
- description:
- Renovasjon husholdning, Logistikk avfall Skardsura, Berbeiding avfall Skardsura, Brøyting og strøing, Vedlikehold veier, leveranse av Pukkverksprodukt, Transport og løfting av varer på og til/fra Værøy
- location_id:
No results.
- estimatedValue:
- currencyCode:
- NOK
- amount:
- 10000000.0
- type:
- ANNOUNCEMENT_OF_COMPETITION
- allTypes:
2 results
- ANNOUNCEMENT_OF_COMPETITION
- COMPETITION
- status:
- EXPIRED
- issueDate:
- 2021-05-25T10:00:00Z
- deadline:
- 2021-07-04T10:00:00Z
- sentToTed:
- no
- publicationDate:
- 2021-05-25
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2022-924485
- buyer:
1 results
- id:
- 557302e652a1f3cda61648cc0c95be94
- organization_id:
- 916216742
- name:
- Akasia Kirke og Gravplass AS
- heading:
- Stabilisering av klokketårn, detaljprosjektering NS8401/8402
- description:
- Prosjektet ved Søreide kirke utgjør følgende arbeidsomfang: - Detaljprosjektering i f.b.m. stabilisering av klokketårnet m.v.
- location_id:
1 results
- NO0A2
- estimatedValue:
- currencyCode:
- NOK
- amount:
- 200000.0
- type:
- ANNOUNCEMENT_OF_COMPETITION
- allTypes:
2 results
- ANNOUNCEMENT_OF_COMPETITION
- COMPETITION
- status:
- EXPIRED
- issueDate:
- 2022-09-20T10:00:00Z
- deadline:
- 2022-10-31T10:00:00Z
- sentToTed:
- yes
- publicationDate:
- 2022-09-20
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2024-116488
- buyer:
100 results
- id:
- 0d10c39f52d139c19b536c04976c50ec
- organization_id:
- 980430596
- name:
- Achilles Information AS
- id:
- 023d64ef713adfc637b2a07b9c114dff
- organization_id:
- 25784510
- name:
- Andel Lumen A/S
- id:
- 82bb75d2197449a487a7282dc180a136
- organization_id:
- 24213528
- name:
- Andel Energi A/S
- id:
- f9700ecbd3fff7500d56176777be3c08
- organization_id:
- 25784413
- name:
- Andel Holding A/S
- id:
- 084dfd2f31ffb7931c10a6559f77344d
- organization_id:
- 28113285
- name:
- Cerius A/S
- id:
- 1878bf8f942033b7cb24aad91f50ff1c
- organization_id:
- 20214414
- name:
- Nexel A/S
- id:
- f5b274c7b425906d6c79215fdbe4f731
- organization_id:
- 29915458
- name:
- Radius Elnet A/S
- id:
- 4a38b67e3ca5bd9c773a6bb76b59484e
- organization_id:
- 41501480
- name:
- Watts A/S
- id:
- a9ff829943680de3b7b8dd354ca99844
- organization_id:
- 25215680
- name:
- E.ON Danmark A/S
- id:
- acd48f8ab75341f4dddb34f7e7c2172a
- organization_id:
- 25500210
- name:
- Energi Fyn Erhverv A/S
- id:
- 3468119f1afefb06a7bec6abb7f48094
- organization_id:
- 27471870
- name:
- Energi Fyn Holding A/S
- id:
- 903b9c611fb97b22ac9561e7139e29a7
- organization_id:
- 25587987
- name:
- Vores Elnet A/S
- id:
- e2b4e6cda1affaf33f48dc2e893bfad1
- organization_id:
- 28980671
- name:
- Energinet
- id:
- 7c0f38bd43a9a75d81c5a4b8ce139f29
- organization_id:
- 25943325
- name:
- Energinet Associated Activities A/S
- id:
- 66c7f163e3350f97cebf4e5e38497e05
- organization_id:
- 39315041
- name:
- Energinet Datahub A/S
- id:
- da0ce50a75a6e1db3ed15c55baf1f24e
- organization_id:
- 39314878
- name:
- Energinet Eltransmission A/S
- id:
- 7d0c4aad53009ff4412157ddd9cd5830
- organization_id:
- 39315084
- name:
- Energinet Gastransmission A/S
- id:
- f75d81b99e66ac61ad73f74c64fc150d
- organization_id:
- 39314959
- name:
- Energinet Systemansvar A/S
- id:
- da94fee0ef96a16b82e6235e3d6308ce
- organization_id:
- 29851247
- name:
- Gas Storage Denmark A/S
- id:
- 3575997d8065cdeffaaff0dc8374ecd3
- organization_id:
- 25495969
- name:
- Fjernvarme Fyn Affaldsenergi A/S
- id:
- 30c7efcec8431439fa82e759d57f8d90
- organization_id:
- 30174968
- name:
- Fjernvarme Fyn Distribution A/S
- id:
- 2a384e24da63fcd21c694de5da4d1ccf
- organization_id:
- 36474718
- name:
- Fjernvarme Fyn Produkion A/S
- id:
- aa6eb51a4f8c23b0ad576a3e93bac7c2
- organization_id:
- 39055775
- name:
- Fjernvarme Fyn Service A/S
- id:
- d39ae080b943d9c7e9487c6fb87f0d3c
- organization_id:
- 10073022
- name:
- Hofor AS
- id:
- 77086a7de37c663f2025544d3e16137e
- organization_id:
- 33354304
- name:
- Hofor Vind AS
- id:
- 844f0567df162d096b4e51fc28574bc5
- organization_id:
- 21262498
- name:
- Konstant Net A/S
- id:
- 29d06b5c463ff8670f7ee743bd77f6c0
- organization_id:
- 33967748
- name:
- Anholt Havvindmøllepark I/S
- id:
- c98abb187094169f56fe93a0df8cf6a4
- organization_id:
- 34890021
- name:
- Danish Oil Pipe A/S
- id:
- ee2021b609f2ecfbf5c96819e36f220d
- organization_id:
- 26488842
- name:
- Emineral a/s
- id:
- 8fe7e4aaf6e06ea5296ba1a7bbd1f5f5
- organization_id:
- 27036635
- name:
- Inbicon A/S
- id:
- 51604ff0b537802f8864ac41bc65cdb0
- organization_id:
- 31176743
- name:
- Nysted I A/S
- id:
- a083952de70a1d89202c97c6c110ecf2
- organization_id:
- 31176743
- name:
- Ørsted - Anholt Offshore A/S
- id:
- c886d7fd926b85cd09cae9b0d699f75c
- organization_id:
- 36213728
- name:
- Ørsted A/S
- id:
- c4de02165bb40d4bd86b65b0214a2ecc
- organization_id:
- 36213728
- name:
- Ørsted A/S Group
- id:
- 419a24ae1404163565e8a6c17204a1b0
- organization_id:
- 27446469
- name:
- Ørsted Bioenergy & Thermal Power A/S
- id:
- 09da90b7de01689c65a30fa1477a1227
- organization_id:
- 31164192
- name:
- Ørsted Horns Rev I A/S
- id:
- 33d27837b1c04a204469a6d281c60174
- organization_id:
- 31164192
- name:
- Ørsted Horns Rev II A/S
- id:
- 25a2dbbc6cda265be9805ff1007bee89
- organization_id:
- 31080223
- name:
- Ørsted Nearshore Wind ApS
- id:
- cbcd459ae36944dc888f0df8de133412
- organization_id:
- 32319017
- name:
- Ørsted New Bio Solutions Holding A/S
- id:
- 43987b81a9301be626ce0b151c285106
- organization_id:
- 27446485
- name:
- Ørsted Services A/S
- id:
- 3169bbb0fb609ae813ad7232cd2afdd4
- organization_id:
- 26510244
- name:
- Ørsted VE A/S
- id:
- 9802dd7fba37ebeee61a1aa907709b2b
- organization_id:
- 31849292
- name:
- Ørsted Wind Power A/S
- id:
- 6d4d21fd37146c1710681855eaa895b9
- organization_id:
- 31846846
- name:
- Ørsted Wind Power Denmark A/S
- id:
- c2192ff4dbdb27f088526aaeb5e5a77a
- organization_id:
- 33962185
- name:
- Pyroneer A/S
- id:
- 478503d2e1b5be6d961b7dd36c580620
- organization_id:
- 31846803
- name:
- Renescience A/S
- id:
- f685ca6eeb852b56a51c4e4e3cb57e32
- organization_id:
- 21311332
- name:
- Vattenfall A/S
- id:
- 38a22355eff0a0f0346ed7b62de557f5
- organization_id:
- 31597544
- name:
- Vattenfall Vindkraft A/S
- id:
- 352ea36af81fc50da3357b25b1375e20
- organization_id:
- 35526382
- name:
- Vattenfall Vindkraft Bajlum P/S
- id:
- df7a7e7700a6d74803f25dad8fc02a19
- organization_id:
- 33951523
- name:
- Vattenfall Vindkraft Ejsing P/S
- id:
- b6cb2935105c24e0349c7502e07b7eea
- organization_id:
- 36687606
- name:
- Vattenfall Vindkraft Horns Rev 3 P/S
- id:
- c9ecc80f303c896cfa1fbb2a3e71c4a1
- organization_id:
- 37088625
- name:
- Vattenfall Vindkraft Klim P/S
- id:
- 9a194b8bef36f987393ff7098f2b243f
- organization_id:
- 38275577
- name:
- Vattenfall Vindkraft Kriegers Flak P/S
- id:
- af56a1c5bb09329a3f844fb0b8a82906
- organization_id:
- 33045786
- name:
- Vattenfall Vindkraft Nørrekær Enge A/S
- id:
- 5c57e48893eb9ea5537b824975f98bf2
- organization_id:
- 38275569
- name:
- Vattenfall Vindkraft Vesterhav Nord P/S
- id:
- 2e7925a9d779037e10f019a18f7318de
- organization_id:
- 38275550
- name:
- Vattenfall Vindkraft Vesterhav Syd P/S
- id:
- 78df5a30e0428f605766777d9461c5df
- organization_id:
- 1842073-2
- name:
- Pamilo Oy
- id:
- 502df393c27da2244f8c1837e492df28
- organization_id:
- 1842073-2
- name:
- Vattenfall Oy
- id:
- 64ac67ac801e8e5db5efb44ecca95fb7
- organization_id:
- HRA 202102
- name:
- Gode Wind 1 Offshore Wind Farm GmbH & Co. oHG
- id:
- 1135bbb861e97f89b63fdabbd8197648
- organization_id:
- HRA 201871
- name:
- Gode Wind 2 Offshore Wind Farm P/S GmbH & Co. oHG
- id:
- f603bc5aa90fe6cdac7d665f4eccc5e8
- organization_id:
- HRA 201463
- name:
- Ørsted Borkum Riffgrund I GmbH
- id:
- 355350912b8448710da33727d3047e8d
- organization_id:
- HRA 202470
- name:
- Ørsted Borkum Riffgrund II GmbH
- id:
- 3b171790f1f2ad6b57f9282e13102bf6
- organization_id:
- HRB 131721
- name:
- Orsted Gode Wind 2 GmbH
- id:
- bdbf473667135f0acef59787f39f7fe7
- organization_id:
- HRB 116369
- name:
- Orsted Germany GmbH
- id:
- 94ec2f357486879a0c286a2ab25d7a7f
- organization_id:
- HRB 128088
- name:
- UMBO GmbH
- id:
- fd94b1a02b027a839e556eaac4359b7b
- organization_id:
- HRB 15873
- name:
- Stadtwerke Solingen GmbH
- id:
- 4269e5e6e62166c2c5822f0cef86d456
- organization_id:
- HRB 95244
- name:
- Stromnetz Energienetze GmbH
- id:
- ad2baaa0ed8b7a52b9720f122f1fc50b
- organization_id:
- 5808042410
- name:
- Landsnet hf.
- id:
- 4d1fdba47ed1df27602ee875326a7825
- organization_id:
- 4202691299
- name:
- Landsvirkjun
- id:
- d6ea87606913ba26973dc7e6b99bf810
- organization_id:
- 66012066
- name:
- Ørsted Borssele 1 B.V.
- id:
- 9232ef8089cc9fba0a7e5ff28696ee25
- organization_id:
- 66136644
- name:
- Ørsted Borssele Holding B.V.
- id:
- a7212b91e039a691168c8d8b2bb90bc6
- organization_id:
- 63586088
- name:
- Ørsted Wind Power Netherlands B.V.
- id:
- 235dfa586d29e02340261063dad5bbae
- organization_id:
- 66130522
- name:
- Ørsted Wind Power Netherlands Holding B.V.
- id:
- 9cd355e04d275c680f587bd8787dca20
- organization_id:
- 393178
- name:
- ELEKTROWNIA WIATROWA BALTICA – 2 SP. Z O.O.
- id:
- ff733bb0a59fc25b900aec7b0ffaa396
- organization_id:
- 392905
- name:
- ELEKTROWNIA WIATROWA BALTICA – 3 SP. Z O.O
- id:
- 80ea66f79bdfd68ce790ae214fc023d6
- organization_id:
- 556070-6060
- name:
- E.ON Energidistribution AB
- id:
- 75f92af8a63df0f8f77a7cfe486c0c86
- organization_id:
- 556006-8420
- name:
- E.ON Sverige AB
- id:
- 0c404b94966d41c78267334de317d075
- organization_id:
- 559409-1596
- name:
- Hafslund Vekst AB
- id:
- b841b2b1b5d9ab4ea521c71c42c4d02a
- organization_id:
- 556001-6064
- name:
- Jämtkraft AB
- id:
- 105e65e27a891c3059bea580b831e5c1
- organization_id:
- 556103-3993
- name:
- Jämtkraft Elnät AB
- id:
- fd796b7b52a3dc921b66bd3e179e94b8
- organization_id:
- 556907-6200
- name:
- Fibra AB
- id:
- 987022b2ca6647b4c2f5b665c863dc6d
- organization_id:
- 556448-9150
- name:
- Mälarenergi AB
- id:
- 024c7741dac0893913aa97a6cf4d8988
- organization_id:
- 556554-1504
- name:
- Mälarenergi Elnät AB
- id:
- 5c044a8b80f8b07e484f1ad1cb4c7ca1
- organization_id:
- 556554-1470
- name:
- Mälarenergi Forsäljning AB
- id:
- e39bf258497a4b4f19e4713474abcfc7
- organization_id:
- 556016-6018
- name:
- Mälarenergi Vattenkraft AB
- id:
- 21df5d6a48c8ab5bbe6a15bcb8365163
- organization_id:
- 556210-6855
- name:
- Stockholm Vatten AB
- id:
- bf935d5613fb07c2590ae26a2232efe2
- organization_id:
- 202100-4284
- name:
- Affärsverket svenska kraftnät
- id:
- bf935d5613fb07c2590ae26a2232efe2
- organization_id:
- 202100-4284
- name:
- Affärsverket svenska kraftnät
- id:
- 3dcc77429bb6bc9ba3e6a8bdb8866d96
- organization_id:
- 556537-4724
- name:
- Gotlands Elnät AB
- id:
- 760df2ddf41475516ebe4066eea62f7f
- organization_id:
- 556008-2157
- name:
- Gotlands Energi AB, Nät
- id:
- 974fa5147a529f3e7b63d69b941f5009
- organization_id:
- 556008-2157
- name:
- Gotlands Energi AB, Värme
- id:
- ca2e07e05f92dbc0283d7f960f4a54b6
- organization_id:
- 556241-9209
- name:
- Haparanda Värmeverk AB
- id:
- 718233040dbc14fed7b401cb996f921c
- organization_id:
- 556241-9191
- name:
- Övertorneå Energi Försäljning AB
- id:
- f65a7327903078946c72c6ae83c10b9a
- organization_id:
- 556565-6864
- name:
- Västerberglagens Elnät AB
- id:
- 4265fd1730d33b2c3e32de781d246d4c
- organization_id:
- 556565-6856
- name:
- Västerbergslagen Energi AB
- id:
- 3a07cfaca7ffef22cccf6905ec91d2bf
- organization_id:
- 556036-2138
- name:
- Vattenfall AB
- id:
- 04c102dd247de2290f82419f55df268b
- organization_id:
- 556257-5661
- name:
- Vattenfall Elanläggningar AB
- id:
- 232b854411bb843bfe72e0ebd51ca07d
- organization_id:
- 556417-0800
- name:
- Vattenfall Eldistribution AB
- id:
- 8b62ffc6ebdc907214fa66d1645ddf18
- organization_id:
- 7307131
- name:
- Burbo Extension Ltd.
- id:
- 4edeb80d3e283d430ee7190868e7f1ba
- organization_id:
- 6730824
- name:
- Ørsted (UK) Ltd
- id:
- af7d7e95960b3690cd2206e5364a899a
- organization_id:
- 988807648
- name:
- Tensio TS AS
- heading:
- Achilles Utilities NCE qualification - notification of qualification system - Supplies
- description:
- ACHILLES UTILITIES NCE is a joint qualification system for suppliers and contractors to utilities in Nordics and Central Europe. It's operated by Achilles under Article 77 of Directive 2014/25/EU. The subscribing utilities will use ACHILLES UTILITIES NCE for tenderer selection for contracts and framework agreements subject to EU procurement rules, but reserve the right to publish individual notices for specific requirements where they deem it necessary, even though they relate to the product and service categories covered by ACHILLES UTILITIES NCE. The qualification system may be used for contracts not subject to EU procurement rules at each subscriber's discretion. An overview of products and services acquired through ACHILLES UTILITIES NCE is available here https://www.achilles.com/wp/wp-content/uploads/2023/05/Product-and-Service-Code-Guide-EN.pdf
- location_id:
1 results
- NOZZZ
- estimatedValue:
- not reported by source
- type:
- QUALIFICATION_SCHEME
- allTypes:
2 results
- QUALIFICATION_SCHEME
- COMPETITION
- status:
- not reported by source
- issueDate:
- 2024-11-17T13:25:36Z
- deadline:
- not reported by source
- sentToTed:
- yes
- publicationDate:
- 2024-11-17
- placeOfPerformance:
- procurementStrategicLabels:
No results.
- id:
- 2024-116489
- buyer:
100 results
- id:
- 0d10c39f52d139c19b536c04976c50ec
- organization_id:
- 980430596
- name:
- Achilles Information AS
- id:
- 023d64ef713adfc637b2a07b9c114dff
- organization_id:
- 25784510
- name:
- Andel Lumen A/S
- id:
- 82bb75d2197449a487a7282dc180a136
- organization_id:
- 24213528
- name:
- Andel Energi A/S
- id:
- f9700ecbd3fff7500d56176777be3c08
- organization_id:
- 25784413
- name:
- Andel Holding A/S
- id:
- 084dfd2f31ffb7931c10a6559f77344d
- organization_id:
- 28113285
- name:
- Cerius A/S
- id:
- 1878bf8f942033b7cb24aad91f50ff1c
- organization_id:
- 20214414
- name:
- Nexel A/S
- id:
- f5b274c7b425906d6c79215fdbe4f731
- organization_id:
- 29915458
- name:
- Radius Elnet A/S
- id:
- 4a38b67e3ca5bd9c773a6bb76b59484e
- organization_id:
- 41501480
- name:
- Watts A/S
- id:
- a9ff829943680de3b7b8dd354ca99844
- organization_id:
- 25215680
- name:
- E.ON Danmark A/S
- id:
- acd48f8ab75341f4dddb34f7e7c2172a
- organization_id:
- 25500210
- name:
- Energi Fyn Erhverv A/S
- id:
- 3468119f1afefb06a7bec6abb7f48094
- organization_id:
- 27471870
- name:
- Energi Fyn Holding A/S
- id:
- 903b9c611fb97b22ac9561e7139e29a7
- organization_id:
- 25587987
- name:
- Vores Elnet A/S
- id:
- e2b4e6cda1affaf33f48dc2e893bfad1
- organization_id:
- 28980671
- name:
- Energinet
- id:
- 7c0f38bd43a9a75d81c5a4b8ce139f29
- organization_id:
- 25943325
- name:
- Energinet Associated Activities A/S
- id:
- 66c7f163e3350f97cebf4e5e38497e05
- organization_id:
- 39315041
- name:
- Energinet Datahub A/S
- id:
- da0ce50a75a6e1db3ed15c55baf1f24e
- organization_id:
- 39314878
- name:
- Energinet Eltransmission A/S
- id:
- 7d0c4aad53009ff4412157ddd9cd5830
- organization_id:
- 39315084
- name:
- Energinet Gastransmission A/S
- id:
- f75d81b99e66ac61ad73f74c64fc150d
- organization_id:
- 39314959
- name:
- Energinet Systemansvar A/S
- id:
- da94fee0ef96a16b82e6235e3d6308ce
- organization_id:
- 29851247
- name:
- Gas Storage Denmark A/S
- id:
- 3575997d8065cdeffaaff0dc8374ecd3
- organization_id:
- 25495969
- name:
- Fjernvarme Fyn Affaldsenergi A/S
- id:
- 30c7efcec8431439fa82e759d57f8d90
- organization_id:
- 30174968
- name:
- Fjernvarme Fyn Distribution A/S
- id:
- 2a384e24da63fcd21c694de5da4d1ccf
- organization_id:
- 36474718
- name:
- Fjernvarme Fyn Produkion A/S
- id:
- aa6eb51a4f8c23b0ad576a3e93bac7c2
- organization_id:
- 39055775
- name:
- Fjernvarme Fyn Service A/S
- id:
- d39ae080b943d9c7e9487c6fb87f0d3c
- organization_id:
- 10073022
- name:
- Hofor AS
- id:
- 77086a7de37c663f2025544d3e16137e
- organization_id:
- 33354304
- name:
- Hofor Vind AS
- id:
- 844f0567df162d096b4e51fc28574bc5
- organization_id:
- 21262498
- name:
- Konstant Net A/S
- id:
- 29d06b5c463ff8670f7ee743bd77f6c0
- organization_id:
- 33967748
- name:
- Anholt Havvindmøllepark I/S
- id:
- c98abb187094169f56fe93a0df8cf6a4
- organization_id:
- 34890021
- name:
- Danish Oil Pipe A/S
- id:
- ee2021b609f2ecfbf5c96819e36f220d
- organization_id:
- 26488842
- name:
- Emineral a/s
- id:
- 8fe7e4aaf6e06ea5296ba1a7bbd1f5f5
- organization_id:
- 27036635
- name:
- Inbicon A/S
- id:
- 51604ff0b537802f8864ac41bc65cdb0
- organization_id:
- 31176743
- name:
- Nysted I A/S
- id:
- a083952de70a1d89202c97c6c110ecf2
- organization_id:
- 31176743
- name:
- Ørsted - Anholt Offshore A/S
- id:
- c886d7fd926b85cd09cae9b0d699f75c
- organization_id:
- 36213728
- name:
- Ørsted A/S
- id:
- c4de02165bb40d4bd86b65b0214a2ecc
- organization_id:
- 36213728
- name:
- Ørsted A/S Group
- id:
- 419a24ae1404163565e8a6c17204a1b0
- organization_id:
- 27446469
- name:
- Ørsted Bioenergy & Thermal Power A/S
- id:
- 09da90b7de01689c65a30fa1477a1227
- organization_id:
- 31164192
- name:
- Ørsted Horns Rev I A/S
- id:
- 33d27837b1c04a204469a6d281c60174
- organization_id:
- 31164192
- name:
- Ørsted Horns Rev II A/S
- id:
- 25a2dbbc6cda265be9805ff1007bee89
- organization_id:
- 31080223
- name:
- Ørsted Nearshore Wind ApS
- id:
- cbcd459ae36944dc888f0df8de133412
- organization_id:
- 32319017
- name:
- Ørsted New Bio Solutions Holding A/S
- id:
- 43987b81a9301be626ce0b151c285106
- organization_id:
- 27446485
- name:
- Ørsted Services A/S
- id:
- 3169bbb0fb609ae813ad7232cd2afdd4
- organization_id:
- 26510244
- name:
- Ørsted VE A/S
- id:
- 9802dd7fba37ebeee61a1aa907709b2b
- organization_id:
- 31849292
- name:
- Ørsted Wind Power A/S
- id:
- 6d4d21fd37146c1710681855eaa895b9
- organization_id:
- 31846846
- name:
- Ørsted Wind Power Denmark A/S
- id:
- c2192ff4dbdb27f088526aaeb5e5a77a
- organization_id:
- 33962185
- name:
- Pyroneer A/S
- id:
- 478503d2e1b5be6d961b7dd36c580620
- organization_id:
- 31846803
- name:
- Renescience A/S
- id:
- f685ca6eeb852b56a51c4e4e3cb57e32
- organization_id:
- 21311332
- name:
- Vattenfall A/S
- id:
- 38a22355eff0a0f0346ed7b62de557f5
- organization_id:
- 31597544
- name:
- Vattenfall Vindkraft A/S
- id:
- 352ea36af81fc50da3357b25b1375e20
- organization_id:
- 35526382
- name:
- Vattenfall Vindkraft Bajlum P/S
- id:
- df7a7e7700a6d74803f25dad8fc02a19
- organization_id:
- 33951523
- name:
- Vattenfall Vindkraft Ejsing P/S
- id:
- b6cb2935105c24e0349c7502e07b7eea
- organization_id:
- 36687606
- name:
- Vattenfall Vindkraft Horns Rev 3 P/S
- id:
- c9ecc80f303c896cfa1fbb2a3e71c4a1
- organization_id:
- 37088625
- name:
- Vattenfall Vindkraft Klim P/S
- id:
- 9a194b8bef36f987393ff7098f2b243f
- organization_id:
- 38275577
- name:
- Vattenfall Vindkraft Kriegers Flak P/S
- id:
- af56a1c5bb09329a3f844fb0b8a82906
- organization_id:
- 33045786
- name:
- Vattenfall Vindkraft Nørrekær Enge A/S
- id:
- 5c57e48893eb9ea5537b824975f98bf2
- organization_id:
- 38275569
- name:
- Vattenfall Vindkraft Vesterhav Nord P/S
- id:
- 2e7925a9d779037e10f019a18f7318de
- organization_id:
- 38275550
- name:
- Vattenfall Vindkraft Vesterhav Syd P/S
- id:
- 78df5a30e0428f605766777d9461c5df
- organization_id:
- 1842073-2
- name:
- Pamilo Oy
- id:
- 502df393c27da2244f8c1837e492df28
- organization_id:
- 1842073-2
- name:
- Vattenfall Oy
- id:
- 64ac67ac801e8e5db5efb44ecca95fb7
- organization_id:
- HRA 202102
- name:
- Gode Wind 1 Offshore Wind Farm GmbH & Co. oHG
- id:
- 1135bbb861e97f89b63fdabbd8197648
- organization_id:
- HRA 201871
- name:
- Gode Wind 2 Offshore Wind Farm P/S GmbH & Co. oHG
- id:
- f603bc5aa90fe6cdac7d665f4eccc5e8
- organization_id:
- HRA 201463
- name:
- Ørsted Borkum Riffgrund I GmbH
- id:
- 355350912b8448710da33727d3047e8d
- organization_id:
- HRA 202470
- name:
- Ørsted Borkum Riffgrund II GmbH
- id:
- 3b171790f1f2ad6b57f9282e13102bf6
- organization_id:
- HRB 131721
- name:
- Orsted Gode Wind 2 GmbH
- id:
- bdbf473667135f0acef59787f39f7fe7
- organization_id:
- HRB 116369
- name:
- Orsted Germany GmbH
- id:
- 94ec2f357486879a0c286a2ab25d7a7f
- organization_id:
- HRB 128088
- name:
- UMBO GmbH
- id:
- fd94b1a02b027a839e556eaac4359b7b
- organization_id:
- HRB 15873
- name:
- Stadtwerke Solingen GmbH
- id:
- 4269e5e6e62166c2c5822f0cef86d456
- organization_id:
- HRB 95244
- name:
- Stromnetz Energienetze GmbH
- id:
- ad2baaa0ed8b7a52b9720f122f1fc50b
- organization_id:
- 5808042410
- name:
- Landsnet hf.
- id:
- 4d1fdba47ed1df27602ee875326a7825
- organization_id:
- 4202691299
- name:
- Landsvirkjun
- id:
- d6ea87606913ba26973dc7e6b99bf810
- organization_id:
- 66012066
- name:
- Ørsted Borssele 1 B.V.
- id:
- 9232ef8089cc9fba0a7e5ff28696ee25
- organization_id:
- 66136644
- name:
- Ørsted Borssele Holding B.V.
- id:
- a7212b91e039a691168c8d8b2bb90bc6
- organization_id:
- 63586088
- name:
- Ørsted Wind Power Netherlands B.V.
- id:
- 235dfa586d29e02340261063dad5bbae
- organization_id:
- 66130522
- name:
- Ørsted Wind Power Netherlands Holding B.V.
- id:
- 9cd355e04d275c680f587bd8787dca20
- organization_id:
- 393178
- name:
- ELEKTROWNIA WIATROWA BALTICA – 2 SP. Z O.O.
- id:
- ff733bb0a59fc25b900aec7b0ffaa396
- organization_id:
- 392905
- name:
- ELEKTROWNIA WIATROWA BALTICA – 3 SP. Z O.O
- id:
- 80ea66f79bdfd68ce790ae214fc023d6
- organization_id:
- 556070-6060
- name:
- E.ON Energidistribution AB
- id:
- 75f92af8a63df0f8f77a7cfe486c0c86
- organization_id:
- 556006-8420
- name:
- E.ON Sverige AB
- id:
- 0c404b94966d41c78267334de317d075
- organization_id:
- 559409-1596
- name:
- Hafslund Vekst AB
- id:
- b841b2b1b5d9ab4ea521c71c42c4d02a
- organization_id:
- 556001-6064
- name:
- Jämtkraft AB
- id:
- 105e65e27a891c3059bea580b831e5c1
- organization_id:
- 556103-3993
- name:
- Jämtkraft Elnät AB
- id:
- fd796b7b52a3dc921b66bd3e179e94b8
- organization_id:
- 556907-6200
- name:
- Fibra AB
- id:
- 987022b2ca6647b4c2f5b665c863dc6d
- organization_id:
- 556448-9150
- name:
- Mälarenergi AB
- id:
- 024c7741dac0893913aa97a6cf4d8988
- organization_id:
- 556554-1504
- name:
- Mälarenergi Elnät AB
- id:
- 5c044a8b80f8b07e484f1ad1cb4c7ca1
- organization_id:
- 556554-1470
- name:
- Mälarenergi Forsäljning AB
- id:
- e39bf258497a4b4f19e4713474abcfc7
- organization_id:
- 556016-6018
- name:
- Mälarenergi Vattenkraft AB
- id:
- 21df5d6a48c8ab5bbe6a15bcb8365163
- organization_id:
- 556210-6855
- name:
- Stockholm Vatten AB
- id:
- bf935d5613fb07c2590ae26a2232efe2
- organization_id:
- 202100-4284
- name:
- Affärsverket svenska kraftnät
- id:
- bf935d5613fb07c2590ae26a2232efe2
- organization_id:
- 202100-4284
- name:
- Affärsverket svenska kraftnät
- id:
- 3dcc77429bb6bc9ba3e6a8bdb8866d96
- organization_id:
- 556537-4724
- name:
- Gotlands Elnät AB
- id:
- 760df2ddf41475516ebe4066eea62f7f
- organization_id:
- 556008-2157
- name:
- Gotlands Energi AB, Nät
- id:
- 974fa5147a529f3e7b63d69b941f5009
- organization_id:
- 556008-2157
- name:
- Gotlands Energi AB, Värme
- id:
- ca2e07e05f92dbc0283d7f960f4a54b6
- organization_id:
- 556241-9209
- name:
- Haparanda Värmeverk AB
- id:
- 718233040dbc14fed7b401cb996f921c
- organization_id:
- 556241-9191
- name:
- Övertorneå Energi Försäljning AB
- id:
- f65a7327903078946c72c6ae83c10b9a
- organization_id:
- 556565-6864
- name:
- Västerberglagens Elnät AB
- id:
- 4265fd1730d33b2c3e32de781d246d4c
- organization_id:
- 556565-6856
- name:
- Västerbergslagen Energi AB
- id:
- 3a07cfaca7ffef22cccf6905ec91d2bf
- organization_id:
- 556036-2138
- name:
- Vattenfall AB
- id:
- 04c102dd247de2290f82419f55df268b
- organization_id:
- 556257-5661
- name:
- Vattenfall Elanläggningar AB
- id:
- 232b854411bb843bfe72e0ebd51ca07d
- organization_id:
- 556417-0800
- name:
- Vattenfall Eldistribution AB
- id:
- 8b62ffc6ebdc907214fa66d1645ddf18
- organization_id:
- 7307131
- name:
- Burbo Extension Ltd.
- id:
- 4edeb80d3e283d430ee7190868e7f1ba
- organization_id:
- 6730824
- name:
- Ørsted (UK) Ltd
- id:
- af7d7e95960b3690cd2206e5364a899a
- organization_id:
- 988807648
- name:
- Tensio TS AS
- heading:
- Achilles Utilities NCE qualification - notification of qualification system - Works
- description:
- ACHILLES UTILITIES NCE is a joint qualification system for suppliers and contractors to utilities in Nordics and Central Europe. It's operated by Achilles under Article 77 of Directive 2014/25/EU. The subscribing utilities will use ACHILLES UTILITIES NCE for tenderer selection for contracts and framework agreements subject to EU procurement rules, but reserve the right to publish individual notices for specific requirements where they deem it necessary, even though they relate to the product and service categories covered by ACHILLES UTILITIES NCE. The qualification system may be used for contracts not subject to EU procurement rules at each subscriber's discretion. An overview of products and services acquired through ACHILLES UTILITIES NCE is available here https://www.achilles.com/wp/wp-content/uploads/2023/05/Product-and-Service-Code-Guide-EN.pdf
- location_id:
1 results
- NOZZZ
- estimatedValue:
- not reported by source
- type:
- QUALIFICATION_SCHEME
- allTypes:
2 results
- QUALIFICATION_SCHEME
- COMPETITION
- status:
- not reported by source
- issueDate:
- 2024-11-17T13:33:10Z
- deadline:
- not reported by source
- sentToTed:
- yes
- publicationDate:
- 2024-11-17
- placeOfPerformance:
- procurementStrategicLabels:
No results.
- limit:
- 25
- offset:
- 0
- returned:
- 10
- has_more_results:
- yes
- truncated:
- yes
- next_offset:
- 10
Show all fields in HTML
- total_count:
- 11
- hits:
10 results
- id:
- 2022-345116
- buyer:
1 results
- id:
- b31edd15b34adf60e1dcaed70e028667
- organization_id:
- 920717152
- name:
- INNLANDET FYLKESKOMMUNE
- heading:
- Sol og vindturbin stasjon for opplæringsformål
- description:
- Innlandet fylkeskommune har derfor til intensjon å inngå kontrakt med Instrutek AS på 8 stk. sol og vind turbin stasjoner for opplæringsformål. Etter å ha undersøkt og forespurt markedet om informasjon gjennom å kunngjøre en "Forespørsel om informasjon(RFI)", er oppdragsgiver av den oppfatning at er kun én aktuell tilbyder i markedet som dekker vårt behov. Frist for å komme med innsigelser: 20.06.2022.
- location_id:
1 results
- NO020
- estimatedValue:
- not reported by source
- type:
- ADVISORY_NOTICE
- allTypes:
2 results
- ADVISORY_NOTICE
- PLANNING
- status:
- not reported by source
- issueDate:
- 2022-06-10T10:00:00Z
- deadline:
- not reported by source
- sentToTed:
- no
- publicationDate:
- 2022-06-10
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2017-789814
- buyer:
1 results
- id:
- eefd509c805df4b5bbc861f14aab6289
- organization_id:
- 959923086
- name:
- ATS Gjøvik/Toten AS
- heading:
- ATS Gjøvik/Toten AS - Nytt kaldtlager
- description:
- ATS Gjøvik/Toten AS skal innhente tilbud på totalentreprise for bygging av et nytt lager bygg i Hunndalen i Gjøvik kommune, Damsletta 4, gnr/bnr 69/828. Lagerbygget skal bygges som et kaldt lager med hensikt og beskytte varer mot vær og vind. Kaldt lageret består av en større og en mindre del som til sammen skal være 600 kvm i grunnflate.
- location_id:
No results.
- estimatedValue:
- currencyCode:
- NOK
- amount:
- 5000000.0
- type:
- ANNOUNCEMENT_OF_COMPETITION
- allTypes:
2 results
- ANNOUNCEMENT_OF_COMPETITION
- COMPETITION
- status:
- EXPIRED
- issueDate:
- 2017-08-22T10:00:00Z
- deadline:
- 2017-09-20T11:00:00Z
- sentToTed:
- no
- publicationDate:
- 2017-08-22
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2022-316458
- buyer:
1 results
- id:
- b7a668833aa45b13f415f7371f08d1bd
- organization_id:
- 918 276 467
- name:
- Spordrift AS
- heading:
- Anskaffelse av Rammeavtale på kursing av personell i bruk av fallsikringsutstyr
- description:
- Spordrift sine ansatte benytter fallsikringsutstyri forbindelse med utførelse av daglig arbeid. Spordrift trenger derfor rammeavtale(r) som skal sikre opplæring av personell slik at Spordrift er i henhold til gjeldende lover og regler. Spordrift har aktivitet der det er jernbaneinfrastruktur, dette innebærer at leverandøren må ha en geografisk kapasitet til å levere de etterspurte tjenestene på de aktuelle lokasjonene.
- location_id:
1 results
- anyw
- estimatedValue:
- not reported by source
- type:
- ANNOUNCEMENT_OF_CONCLUSION_OF_CONTRACT
- allTypes:
2 results
- RESULT
- ANNOUNCEMENT_OF_CONCLUSION_OF_CONTRACT
- status:
- not reported by source
- issueDate:
- 2022-02-11T10:00:00Z
- deadline:
- not reported by source
- sentToTed:
- yes
- publicationDate:
- 2022-02-11
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2022-661819
- buyer:
1 results
- id:
- 9aef4e0344cad89997cd1399486a6d66
- organization_id:
- 971349077
- name:
- Havforskningsinstituttet
- heading:
- 22/03380 - WBAT med tilbehør
- description:
- Intensjonskunngjøring: Kjøp av WBAT med tilbehør og to transdusere fra Kongsberg Maritime AS.
- location_id:
No results.
- estimatedValue:
- not reported by source
- type:
- ADVISORY_NOTICE
- allTypes:
2 results
- ADVISORY_NOTICE
- PLANNING
- status:
- not reported by source
- issueDate:
- 2022-12-02T10:00:00Z
- deadline:
- not reported by source
- sentToTed:
- no
- publicationDate:
- 2022-12-02
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2019-347341
- buyer:
1 results
- id:
- 24f5002b4816434bef14ce06b9b57b12
- organization_id:
- 940101808
- name:
- Tromsø Kommune
- heading:
- Taksering av vindkraftanlegg - Kvaløya - Tromsø kommune
- description:
- Tromsø kommune skal kjøpe takseringstjeneste for fastsetting av eiendomsskattetakst for to vindkraftanlegg. Takseringen skal skje i henhold til bestemmelsene i Eigedomsskattelova. Tromsø kommune har vedtatt at det skal utliknes eiendomsskatt på samtlige eiendommer i kommunen, kommunestyrevedtak 167/18. Etter Eigedomsskattelova §8 A-2, skal skattetakst på vindkraftanlegg settes til teknisk verdi eller avkastningsverdi.
- location_id:
No results.
- estimatedValue:
- not reported by source
- type:
- ANNOUNCEMENT_OF_COMPETITION
- allTypes:
2 results
- ANNOUNCEMENT_OF_COMPETITION
- COMPETITION
- status:
- EXPIRED
- issueDate:
- 2019-10-22T10:00:00Z
- deadline:
- 2019-11-08T10:00:00Z
- sentToTed:
- yes
- publicationDate:
- 2019-10-22
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2021-327626
- buyer:
1 results
- id:
- 7bafa0b72bfbaaf7bb4d2159b5e1975a
- organization_id:
- 964 338 531
- name:
- Bergen kommune
- heading:
- Intensjonskunngjøring - kjøp av analyseprogram
- description:
- I henhold til forskrift om offentlige anskaffelser (FOA) § 8-18 opplyses det om at Bergen kommune ved Plan- og bygningsetaten har intensjon om å inngå rammeavtale om kjøp av skybasert analyseprogram for arealplanlegging. Avtalen har et estimert omfang på kr 370 000,- per år. Omfanget kan bli høyere dersom kommunen ser behov for flere lisenser. Maksimal totalverdi på fire år er 2 MNOK.
- location_id:
2 results
- NO0
- NO0A2
- estimatedValue:
- not reported by source
- type:
- ADVISORY_NOTICE
- allTypes:
2 results
- ADVISORY_NOTICE
- PLANNING
- status:
- not reported by source
- issueDate:
- 2021-11-03T10:00:00Z
- deadline:
- not reported by source
- sentToTed:
- no
- publicationDate:
- 2021-11-03
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2021-399406
- buyer:
1 results
- id:
- 0cc8306fa5e7dcfc5c8789908b4e1444
- organization_id:
- 964 994 307
- name:
- VÆRØY KOMMUNE
- heading:
- Driftstjenester renovasjon, vedlikehold vei, brøyting, logistikk og løfting, pukkverksprodukt
- description:
- Renovasjon husholdning, Logistikk avfall Skardsura, Berbeiding avfall Skardsura, Brøyting og strøing, Vedlikehold veier, leveranse av Pukkverksprodukt, Transport og løfting av varer på og til/fra Værøy
- location_id:
No results.
- estimatedValue:
- currencyCode:
- NOK
- amount:
- 10000000.0
- type:
- ANNOUNCEMENT_OF_COMPETITION
- allTypes:
2 results
- ANNOUNCEMENT_OF_COMPETITION
- COMPETITION
- status:
- EXPIRED
- issueDate:
- 2021-05-25T10:00:00Z
- deadline:
- 2021-07-04T10:00:00Z
- sentToTed:
- no
- publicationDate:
- 2021-05-25
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2022-924485
- buyer:
1 results
- id:
- 557302e652a1f3cda61648cc0c95be94
- organization_id:
- 916216742
- name:
- Akasia Kirke og Gravplass AS
- heading:
- Stabilisering av klokketårn, detaljprosjektering NS8401/8402
- description:
- Prosjektet ved Søreide kirke utgjør følgende arbeidsomfang: - Detaljprosjektering i f.b.m. stabilisering av klokketårnet m.v.
- location_id:
1 results
- NO0A2
- estimatedValue:
- currencyCode:
- NOK
- amount:
- 200000.0
- type:
- ANNOUNCEMENT_OF_COMPETITION
- allTypes:
2 results
- ANNOUNCEMENT_OF_COMPETITION
- COMPETITION
- status:
- EXPIRED
- issueDate:
- 2022-09-20T10:00:00Z
- deadline:
- 2022-10-31T10:00:00Z
- sentToTed:
- yes
- publicationDate:
- 2022-09-20
- placeOfPerformance:
No results.
- procurementStrategicLabels:
No results.
- id:
- 2024-116488
- buyer:
100 results
- id:
- 0d10c39f52d139c19b536c04976c50ec
- organization_id:
- 980430596
- name:
- Achilles Information AS
- id:
- 023d64ef713adfc637b2a07b9c114dff
- organization_id:
- 25784510
- name:
- Andel Lumen A/S
- id:
- 82bb75d2197449a487a7282dc180a136
- organization_id:
- 24213528
- name:
- Andel Energi A/S
- id:
- f9700ecbd3fff7500d56176777be3c08
- organization_id:
- 25784413
- name:
- Andel Holding A/S
- id:
- 084dfd2f31ffb7931c10a6559f77344d
- organization_id:
- 28113285
- name:
- Cerius A/S
- id:
- 1878bf8f942033b7cb24aad91f50ff1c
- organization_id:
- 20214414
- name:
- Nexel A/S
- id:
- f5b274c7b425906d6c79215fdbe4f731
- organization_id:
- 29915458
- name:
- Radius Elnet A/S
- id:
- 4a38b67e3ca5bd9c773a6bb76b59484e
- organization_id:
- 41501480
- name:
- Watts A/S
- id:
- a9ff829943680de3b7b8dd354ca99844
- organization_id:
- 25215680
- name:
- E.ON Danmark A/S
- id:
- acd48f8ab75341f4dddb34f7e7c2172a
- organization_id:
- 25500210
- name:
- Energi Fyn Erhverv A/S
- id:
- 3468119f1afefb06a7bec6abb7f48094
- organization_id:
- 27471870
- name:
- Energi Fyn Holding A/S
- id:
- 903b9c611fb97b22ac9561e7139e29a7
- organization_id:
- 25587987
- name:
- Vores Elnet A/S
- id:
- e2b4e6cda1affaf33f48dc2e893bfad1
- organization_id:
- 28980671
- name:
- Energinet
- id:
- 7c0f38bd43a9a75d81c5a4b8ce139f29
- organization_id:
- 25943325
- name:
- Energinet Associated Activities A/S
- id:
- 66c7f163e3350f97cebf4e5e38497e05
- organization_id:
- 39315041
- name:
- Energinet Datahub A/S
- id:
- da0ce50a75a6e1db3ed15c55baf1f24e
- organization_id:
- 39314878
- name:
- Energinet Eltransmission A/S
- id:
- 7d0c4aad53009ff4412157ddd9cd5830
- organization_id:
- 39315084
- name:
- Energinet Gastransmission A/S
- id:
- f75d81b99e66ac61ad73f74c64fc150d
- organization_id:
- 39314959
- name:
- Energinet Systemansvar A/S
- id:
- da94fee0ef96a16b82e6235e3d6308ce
- organization_id:
- 29851247
- name:
- Gas Storage Denmark A/S
- id:
- 3575997d8065cdeffaaff0dc8374ecd3
- organization_id:
- 25495969
- name:
- Fjernvarme Fyn Affaldsenergi A/S
- id:
- 30c7efcec8431439fa82e759d57f8d90
- organization_id:
- 30174968
- name:
- Fjernvarme Fyn Distribution A/S
- id:
- 2a384e24da63fcd21c694de5da4d1ccf
- organization_id:
- 36474718
- name:
- Fjernvarme Fyn Produkion A/S
- id:
- aa6eb51a4f8c23b0ad576a3e93bac7c2
- organization_id:
- 39055775
- name:
- Fjernvarme Fyn Service A/S
- id:
- d39ae080b943d9c7e9487c6fb87f0d3c
- organization_id:
- 10073022
- name:
- Hofor AS
- id:
- 77086a7de37c663f2025544d3e16137e
- organization_id:
- 33354304
- name:
- Hofor Vind AS
- id:
- 844f0567df162d096b4e51fc28574bc5
- organization_id:
- 21262498
- name:
- Konstant Net A/S
- id:
- 29d06b5c463ff8670f7ee743bd77f6c0
- organization_id:
- 33967748
- name:
- Anholt Havvindmøllepark I/S
- id:
- c98abb187094169f56fe93a0df8cf6a4
- organization_id:
- 34890021
- name:
- Danish Oil Pipe A/S
- id:
- ee2021b609f2ecfbf5c96819e36f220d
- organization_id:
- 26488842
- name:
- Emineral a/s
- id:
- 8fe7e4aaf6e06ea5296ba1a7bbd1f5f5
- organization_id:
- 27036635
- name:
- Inbicon A/S
- id:
- 51604ff0b537802f8864ac41bc65cdb0
- organization_id:
- 31176743
- name:
- Nysted I A/S
- id:
- a083952de70a1d89202c97c6c110ecf2
- organization_id:
- 31176743
- name:
- Ørsted - Anholt Offshore A/S
- id:
- c886d7fd926b85cd09cae9b0d699f75c
- organization_id:
- 36213728
- name:
- Ørsted A/S
- id:
- c4de02165bb40d4bd86b65b0214a2ecc
- organization_id:
- 36213728
- name:
- Ørsted A/S Group
- id:
- 419a24ae1404163565e8a6c17204a1b0
- organization_id:
- 27446469
- name:
- Ørsted Bioenergy & Thermal Power A/S
- id:
- 09da90b7de01689c65a30fa1477a1227
- organization_id:
- 31164192
- name:
- Ørsted Horns Rev I A/S
- id:
- 33d27837b1c04a204469a6d281c60174
- organization_id:
- 31164192
- name:
- Ørsted Horns Rev II A/S
- id:
- 25a2dbbc6cda265be9805ff1007bee89
- organization_id:
- 31080223
- name:
- Ørsted Nearshore Wind ApS
- id:
- cbcd459ae36944dc888f0df8de133412
- organization_id:
- 32319017
- name:
- Ørsted New Bio Solutions Holding A/S
- id:
- 43987b81a9301be626ce0b151c285106
- organization_id:
- 27446485
- name:
- Ørsted Services A/S
- id:
- 3169bbb0fb609ae813ad7232cd2afdd4
- organization_id:
- 26510244
- name:
- Ørsted VE A/S
- id:
- 9802dd7fba37ebeee61a1aa907709b2b
- organization_id:
- 31849292
- name:
- Ørsted Wind Power A/S
- id:
- 6d4d21fd37146c1710681855eaa895b9
- organization_id:
- 31846846
- name:
- Ørsted Wind Power Denmark A/S
- id:
- c2192ff4dbdb27f088526aaeb5e5a77a
- organization_id:
- 33962185
- name:
- Pyroneer A/S
- id:
- 478503d2e1b5be6d961b7dd36c580620
- organization_id:
- 31846803
- name:
- Renescience A/S
- id:
- f685ca6eeb852b56a51c4e4e3cb57e32
- organization_id:
- 21311332
- name:
- Vattenfall A/S
- id:
- 38a22355eff0a0f0346ed7b62de557f5
- organization_id:
- 31597544
- name:
- Vattenfall Vindkraft A/S
- id:
- 352ea36af81fc50da3357b25b1375e20
- organization_id:
- 35526382
- name:
- Vattenfall Vindkraft Bajlum P/S
- id:
- df7a7e7700a6d74803f25dad8fc02a19
- organization_id:
- 33951523
- name:
- Vattenfall Vindkraft Ejsing P/S
- id:
- b6cb2935105c24e0349c7502e07b7eea
- organization_id:
- 36687606
- name:
- Vattenfall Vindkraft Horns Rev 3 P/S
- id:
- c9ecc80f303c896cfa1fbb2a3e71c4a1
- organization_id:
- 37088625
- name:
- Vattenfall Vindkraft Klim P/S
- id:
- 9a194b8bef36f987393ff7098f2b243f
- organization_id:
- 38275577
- name:
- Vattenfall Vindkraft Kriegers Flak P/S
- id:
- af56a1c5bb09329a3f844fb0b8a82906
- organization_id:
- 33045786
- name:
- Vattenfall Vindkraft Nørrekær Enge A/S
- id:
- 5c57e48893eb9ea5537b824975f98bf2
- organization_id:
- 38275569
- name:
- Vattenfall Vindkraft Vesterhav Nord P/S
- id:
- 2e7925a9d779037e10f019a18f7318de
- organization_id:
- 38275550
- name:
- Vattenfall Vindkraft Vesterhav Syd P/S
- id:
- 78df5a30e0428f605766777d9461c5df
- organization_id:
- 1842073-2
- name:
- Pamilo Oy
- id:
- 502df393c27da2244f8c1837e492df28
- organization_id:
- 1842073-2
- name:
- Vattenfall Oy
- id:
- 64ac67ac801e8e5db5efb44ecca95fb7
- organization_id:
- HRA 202102
- name:
- Gode Wind 1 Offshore Wind Farm GmbH & Co. oHG
- id:
- 1135bbb861e97f89b63fdabbd8197648
- organization_id:
- HRA 201871
- name:
- Gode Wind 2 Offshore Wind Farm P/S GmbH & Co. oHG
- id:
- f603bc5aa90fe6cdac7d665f4eccc5e8
- organization_id:
- HRA 201463
- name:
- Ørsted Borkum Riffgrund I GmbH
- id:
- 355350912b8448710da33727d3047e8d
- organization_id:
- HRA 202470
- name:
- Ørsted Borkum Riffgrund II GmbH
- id:
- 3b171790f1f2ad6b57f9282e13102bf6
- organization_id:
- HRB 131721
- name:
- Orsted Gode Wind 2 GmbH
- id:
- bdbf473667135f0acef59787f39f7fe7
- organization_id:
- HRB 116369
- name:
- Orsted Germany GmbH
- id:
- 94ec2f357486879a0c286a2ab25d7a7f
- organization_id:
- HRB 128088
- name:
- UMBO GmbH
- id:
- fd94b1a02b027a839e556eaac4359b7b
- organization_id:
- HRB 15873
- name:
- Stadtwerke Solingen GmbH
- id:
- 4269e5e6e62166c2c5822f0cef86d456
- organization_id:
- HRB 95244
- name:
- Stromnetz Energienetze GmbH
- id:
- ad2baaa0ed8b7a52b9720f122f1fc50b
- organization_id:
- 5808042410
- name:
- Landsnet hf.
- id:
- 4d1fdba47ed1df27602ee875326a7825
- organization_id:
- 4202691299
- name:
- Landsvirkjun
- id:
- d6ea87606913ba26973dc7e6b99bf810
- organization_id:
- 66012066
- name:
- Ørsted Borssele 1 B.V.
- id:
- 9232ef8089cc9fba0a7e5ff28696ee25
- organization_id:
- 66136644
- name:
- Ørsted Borssele Holding B.V.
- id:
- a7212b91e039a691168c8d8b2bb90bc6
- organization_id:
- 63586088
- name:
- Ørsted Wind Power Netherlands B.V.
- id:
- 235dfa586d29e02340261063dad5bbae
- organization_id:
- 66130522
- name:
- Ørsted Wind Power Netherlands Holding B.V.
- id:
- 9cd355e04d275c680f587bd8787dca20
- organization_id:
- 393178
- name:
- ELEKTROWNIA WIATROWA BALTICA – 2 SP. Z O.O.
- id:
- ff733bb0a59fc25b900aec7b0ffaa396
- organization_id:
- 392905
- name:
- ELEKTROWNIA WIATROWA BALTICA – 3 SP. Z O.O
- id:
- 80ea66f79bdfd68ce790ae214fc023d6
- organization_id:
- 556070-6060
- name:
- E.ON Energidistribution AB
- id:
- 75f92af8a63df0f8f77a7cfe486c0c86
- organization_id:
- 556006-8420
- name:
- E.ON Sverige AB
- id:
- 0c404b94966d41c78267334de317d075
- organization_id:
- 559409-1596
- name:
- Hafslund Vekst AB
- id:
- b841b2b1b5d9ab4ea521c71c42c4d02a
- organization_id:
- 556001-6064
- name:
- Jämtkraft AB
- id:
- 105e65e27a891c3059bea580b831e5c1
- organization_id:
- 556103-3993
- name:
- Jämtkraft Elnät AB
- id:
- fd796b7b52a3dc921b66bd3e179e94b8
- organization_id:
- 556907-6200
- name:
- Fibra AB
- id:
- 987022b2ca6647b4c2f5b665c863dc6d
- organization_id:
- 556448-9150
- name:
- Mälarenergi AB
- id:
- 024c7741dac0893913aa97a6cf4d8988
- organization_id:
- 556554-1504
- name:
- Mälarenergi Elnät AB
- id:
- 5c044a8b80f8b07e484f1ad1cb4c7ca1
- organization_id:
- 556554-1470
- name:
- Mälarenergi Forsäljning AB
- id:
- e39bf258497a4b4f19e4713474abcfc7
- organization_id:
- 556016-6018
- name:
- Mälarenergi Vattenkraft AB
- id:
- 21df5d6a48c8ab5bbe6a15bcb8365163
- organization_id:
- 556210-6855
- name:
- Stockholm Vatten AB
- id:
- bf935d5613fb07c2590ae26a2232efe2
- organization_id:
- 202100-4284
- name:
- Affärsverket svenska kraftnät
- id:
- bf935d5613fb07c2590ae26a2232efe2
- organization_id:
- 202100-4284
- name:
- Affärsverket svenska kraftnät
- id:
- 3dcc77429bb6bc9ba3e6a8bdb8866d96
- organization_id:
- 556537-4724
- name:
- Gotlands Elnät AB
- id:
- 760df2ddf41475516ebe4066eea62f7f
- organization_id:
- 556008-2157
- name:
- Gotlands Energi AB, Nät
- id:
- 974fa5147a529f3e7b63d69b941f5009
- organization_id:
- 556008-2157
- name:
- Gotlands Energi AB, Värme
- id:
- ca2e07e05f92dbc0283d7f960f4a54b6
- organization_id:
- 556241-9209
- name:
- Haparanda Värmeverk AB
- id:
- 718233040dbc14fed7b401cb996f921c
- organization_id:
- 556241-9191
- name:
- Övertorneå Energi Försäljning AB
- id:
- f65a7327903078946c72c6ae83c10b9a
- organization_id:
- 556565-6864
- name:
- Västerberglagens Elnät AB
- id:
- 4265fd1730d33b2c3e32de781d246d4c
- organization_id:
- 556565-6856
- name:
- Västerbergslagen Energi AB
- id:
- 3a07cfaca7ffef22cccf6905ec91d2bf
- organization_id:
- 556036-2138
- name:
- Vattenfall AB
- id:
- 04c102dd247de2290f82419f55df268b
- organization_id:
- 556257-5661
- name:
- Vattenfall Elanläggningar AB
- id:
- 232b854411bb843bfe72e0ebd51ca07d
- organization_id:
- 556417-0800
- name:
- Vattenfall Eldistribution AB
- id:
- 8b62ffc6ebdc907214fa66d1645ddf18
- organization_id:
- 7307131
- name:
- Burbo Extension Ltd.
- id:
- 4edeb80d3e283d430ee7190868e7f1ba
- organization_id:
- 6730824
- name:
- Ørsted (UK) Ltd
- id:
- af7d7e95960b3690cd2206e5364a899a
- organization_id:
- 988807648
- name:
- Tensio TS AS
- heading:
- Achilles Utilities NCE qualification - notification of qualification system - Supplies
- description:
- ACHILLES UTILITIES NCE is a joint qualification system for suppliers and contractors to utilities in Nordics and Central Europe. It's operated by Achilles under Article 77 of Directive 2014/25/EU. The subscribing utilities will use ACHILLES UTILITIES NCE for tenderer selection for contracts and framework agreements subject to EU procurement rules, but reserve the right to publish individual notices for specific requirements where they deem it necessary, even though they relate to the product and service categories covered by ACHILLES UTILITIES NCE. The qualification system may be used for contracts not subject to EU procurement rules at each subscriber's discretion. An overview of products and services acquired through ACHILLES UTILITIES NCE is available here https://www.achilles.com/wp/wp-content/uploads/2023/05/Product-and-Service-Code-Guide-EN.pdf
- location_id:
1 results
- NOZZZ
- estimatedValue:
- not reported by source
- type:
- QUALIFICATION_SCHEME
- allTypes:
2 results
- QUALIFICATION_SCHEME
- COMPETITION
- status:
- not reported by source
- issueDate:
- 2024-11-17T13:25:36Z
- deadline:
- not reported by source
- sentToTed:
- yes
- publicationDate:
- 2024-11-17
- placeOfPerformance:
- procurementStrategicLabels:
No results.
- id:
- 2024-116489
- buyer:
100 results
- id:
- 0d10c39f52d139c19b536c04976c50ec
- organization_id:
- 980430596
- name:
- Achilles Information AS
- id:
- 023d64ef713adfc637b2a07b9c114dff
- organization_id:
- 25784510
- name:
- Andel Lumen A/S
- id:
- 82bb75d2197449a487a7282dc180a136
- organization_id:
- 24213528
- name:
- Andel Energi A/S
- id:
- f9700ecbd3fff7500d56176777be3c08
- organization_id:
- 25784413
- name:
- Andel Holding A/S
- id:
- 084dfd2f31ffb7931c10a6559f77344d
- organization_id:
- 28113285
- name:
- Cerius A/S
- id:
- 1878bf8f942033b7cb24aad91f50ff1c
- organization_id:
- 20214414
- name:
- Nexel A/S
- id:
- f5b274c7b425906d6c79215fdbe4f731
- organization_id:
- 29915458
- name:
- Radius Elnet A/S
- id:
- 4a38b67e3ca5bd9c773a6bb76b59484e
- organization_id:
- 41501480
- name:
- Watts A/S
- id:
- a9ff829943680de3b7b8dd354ca99844
- organization_id:
- 25215680
- name:
- E.ON Danmark A/S
- id:
- acd48f8ab75341f4dddb34f7e7c2172a
- organization_id:
- 25500210
- name:
- Energi Fyn Erhverv A/S
- id:
- 3468119f1afefb06a7bec6abb7f48094
- organization_id:
- 27471870
- name:
- Energi Fyn Holding A/S
- id:
- 903b9c611fb97b22ac9561e7139e29a7
- organization_id:
- 25587987
- name:
- Vores Elnet A/S
- id:
- e2b4e6cda1affaf33f48dc2e893bfad1
- organization_id:
- 28980671
- name:
- Energinet
- id:
- 7c0f38bd43a9a75d81c5a4b8ce139f29
- organization_id:
- 25943325
- name:
- Energinet Associated Activities A/S
- id:
- 66c7f163e3350f97cebf4e5e38497e05
- organization_id:
- 39315041
- name:
- Energinet Datahub A/S
- id:
- da0ce50a75a6e1db3ed15c55baf1f24e
- organization_id:
- 39314878
- name:
- Energinet Eltransmission A/S
- id:
- 7d0c4aad53009ff4412157ddd9cd5830
- organization_id:
- 39315084
- name:
- Energinet Gastransmission A/S
- id:
- f75d81b99e66ac61ad73f74c64fc150d
- organization_id:
- 39314959
- name:
- Energinet Systemansvar A/S
- id:
- da94fee0ef96a16b82e6235e3d6308ce
- organization_id:
- 29851247
- name:
- Gas Storage Denmark A/S
- id:
- 3575997d8065cdeffaaff0dc8374ecd3
- organization_id:
- 25495969
- name:
- Fjernvarme Fyn Affaldsenergi A/S
- id:
- 30c7efcec8431439fa82e759d57f8d90
- organization_id:
- 30174968
- name:
- Fjernvarme Fyn Distribution A/S
- id:
- 2a384e24da63fcd21c694de5da4d1ccf
- organization_id:
- 36474718
- name:
- Fjernvarme Fyn Produkion A/S
- id:
- aa6eb51a4f8c23b0ad576a3e93bac7c2
- organization_id:
- 39055775
- name:
- Fjernvarme Fyn Service A/S
- id:
- d39ae080b943d9c7e9487c6fb87f0d3c
- organization_id:
- 10073022
- name:
- Hofor AS
- id:
- 77086a7de37c663f2025544d3e16137e
- organization_id:
- 33354304
- name:
- Hofor Vind AS
- id:
- 844f0567df162d096b4e51fc28574bc5
- organization_id:
- 21262498
- name:
- Konstant Net A/S
- id:
- 29d06b5c463ff8670f7ee743bd77f6c0
- organization_id:
- 33967748
- name:
- Anholt Havvindmøllepark I/S
- id:
- c98abb187094169f56fe93a0df8cf6a4
- organization_id:
- 34890021
- name:
- Danish Oil Pipe A/S
- id:
- ee2021b609f2ecfbf5c96819e36f220d
- organization_id:
- 26488842
- name:
- Emineral a/s
- id:
- 8fe7e4aaf6e06ea5296ba1a7bbd1f5f5
- organization_id:
- 27036635
- name:
- Inbicon A/S
- id:
- 51604ff0b537802f8864ac41bc65cdb0
- organization_id:
- 31176743
- name:
- Nysted I A/S
- id:
- a083952de70a1d89202c97c6c110ecf2
- organization_id:
- 31176743
- name:
- Ørsted - Anholt Offshore A/S
- id:
- c886d7fd926b85cd09cae9b0d699f75c
- organization_id:
- 36213728
- name:
- Ørsted A/S
- id:
- c4de02165bb40d4bd86b65b0214a2ecc
- organization_id:
- 36213728
- name:
- Ørsted A/S Group
- id:
- 419a24ae1404163565e8a6c17204a1b0
- organization_id:
- 27446469
- name:
- Ørsted Bioenergy & Thermal Power A/S
- id:
- 09da90b7de01689c65a30fa1477a1227
- organization_id:
- 31164192
- name:
- Ørsted Horns Rev I A/S
- id:
- 33d27837b1c04a204469a6d281c60174
- organization_id:
- 31164192
- name:
- Ørsted Horns Rev II A/S
- id:
- 25a2dbbc6cda265be9805ff1007bee89
- organization_id:
- 31080223
- name:
- Ørsted Nearshore Wind ApS
- id:
- cbcd459ae36944dc888f0df8de133412
- organization_id:
- 32319017
- name:
- Ørsted New Bio Solutions Holding A/S
- id:
- 43987b81a9301be626ce0b151c285106
- organization_id:
- 27446485
- name:
- Ørsted Services A/S
- id:
- 3169bbb0fb609ae813ad7232cd2afdd4
- organization_id:
- 26510244
- name:
- Ørsted VE A/S
- id:
- 9802dd7fba37ebeee61a1aa907709b2b
- organization_id:
- 31849292
- name:
- Ørsted Wind Power A/S
- id:
- 6d4d21fd37146c1710681855eaa895b9
- organization_id:
- 31846846
- name:
- Ørsted Wind Power Denmark A/S
- id:
- c2192ff4dbdb27f088526aaeb5e5a77a
- organization_id:
- 33962185
- name:
- Pyroneer A/S
- id:
- 478503d2e1b5be6d961b7dd36c580620
- organization_id:
- 31846803
- name:
- Renescience A/S
- id:
- f685ca6eeb852b56a51c4e4e3cb57e32
- organization_id:
- 21311332
- name:
- Vattenfall A/S
- id:
- 38a22355eff0a0f0346ed7b62de557f5
- organization_id:
- 31597544
- name:
- Vattenfall Vindkraft A/S
- id:
- 352ea36af81fc50da3357b25b1375e20
- organization_id:
- 35526382
- name:
- Vattenfall Vindkraft Bajlum P/S
- id:
- df7a7e7700a6d74803f25dad8fc02a19
- organization_id:
- 33951523
- name:
- Vattenfall Vindkraft Ejsing P/S
- id:
- b6cb2935105c24e0349c7502e07b7eea
- organization_id:
- 36687606
- name:
- Vattenfall Vindkraft Horns Rev 3 P/S
- id:
- c9ecc80f303c896cfa1fbb2a3e71c4a1
- organization_id:
- 37088625
- name:
- Vattenfall Vindkraft Klim P/S
- id:
- 9a194b8bef36f987393ff7098f2b243f
- organization_id:
- 38275577
- name:
- Vattenfall Vindkraft Kriegers Flak P/S
- id:
- af56a1c5bb09329a3f844fb0b8a82906
- organization_id:
- 33045786
- name:
- Vattenfall Vindkraft Nørrekær Enge A/S
- id:
- 5c57e48893eb9ea5537b824975f98bf2
- organization_id:
- 38275569
- name:
- Vattenfall Vindkraft Vesterhav Nord P/S
- id:
- 2e7925a9d779037e10f019a18f7318de
- organization_id:
- 38275550
- name:
- Vattenfall Vindkraft Vesterhav Syd P/S
- id:
- 78df5a30e0428f605766777d9461c5df
- organization_id:
- 1842073-2
- name:
- Pamilo Oy
- id:
- 502df393c27da2244f8c1837e492df28
- organization_id:
- 1842073-2
- name:
- Vattenfall Oy
- id:
- 64ac67ac801e8e5db5efb44ecca95fb7
- organization_id:
- HRA 202102
- name:
- Gode Wind 1 Offshore Wind Farm GmbH & Co. oHG
- id:
- 1135bbb861e97f89b63fdabbd8197648
- organization_id:
- HRA 201871
- name:
- Gode Wind 2 Offshore Wind Farm P/S GmbH & Co. oHG
- id:
- f603bc5aa90fe6cdac7d665f4eccc5e8
- organization_id:
- HRA 201463
- name:
- Ørsted Borkum Riffgrund I GmbH
- id:
- 355350912b8448710da33727d3047e8d
- organization_id:
- HRA 202470
- name:
- Ørsted Borkum Riffgrund II GmbH
- id:
- 3b171790f1f2ad6b57f9282e13102bf6
- organization_id:
- HRB 131721
- name:
- Orsted Gode Wind 2 GmbH
- id:
- bdbf473667135f0acef59787f39f7fe7
- organization_id:
- HRB 116369
- name:
- Orsted Germany GmbH
- id:
- 94ec2f357486879a0c286a2ab25d7a7f
- organization_id:
- HRB 128088
- name:
- UMBO GmbH
- id:
- fd94b1a02b027a839e556eaac4359b7b
- organization_id:
- HRB 15873
- name:
- Stadtwerke Solingen GmbH
- id:
- 4269e5e6e62166c2c5822f0cef86d456
- organization_id:
- HRB 95244
- name:
- Stromnetz Energienetze GmbH
- id:
- ad2baaa0ed8b7a52b9720f122f1fc50b
- organization_id:
- 5808042410
- name:
- Landsnet hf.
- id:
- 4d1fdba47ed1df27602ee875326a7825
- organization_id:
- 4202691299
- name:
- Landsvirkjun
- id:
- d6ea87606913ba26973dc7e6b99bf810
- organization_id:
- 66012066
- name:
- Ørsted Borssele 1 B.V.
- id:
- 9232ef8089cc9fba0a7e5ff28696ee25
- organization_id:
- 66136644
- name:
- Ørsted Borssele Holding B.V.
- id:
- a7212b91e039a691168c8d8b2bb90bc6
- organization_id:
- 63586088
- name:
- Ørsted Wind Power Netherlands B.V.
- id:
- 235dfa586d29e02340261063dad5bbae
- organization_id:
- 66130522
- name:
- Ørsted Wind Power Netherlands Holding B.V.
- id:
- 9cd355e04d275c680f587bd8787dca20
- organization_id:
- 393178
- name:
- ELEKTROWNIA WIATROWA BALTICA – 2 SP. Z O.O.
- id:
- ff733bb0a59fc25b900aec7b0ffaa396
- organization_id:
- 392905
- name:
- ELEKTROWNIA WIATROWA BALTICA – 3 SP. Z O.O
- id:
- 80ea66f79bdfd68ce790ae214fc023d6
- organization_id:
- 556070-6060
- name:
- E.ON Energidistribution AB
- id:
- 75f92af8a63df0f8f77a7cfe486c0c86
- organization_id:
- 556006-8420
- name:
- E.ON Sverige AB
- id:
- 0c404b94966d41c78267334de317d075
- organization_id:
- 559409-1596
- name:
- Hafslund Vekst AB
- id:
- b841b2b1b5d9ab4ea521c71c42c4d02a
- organization_id:
- 556001-6064
- name:
- Jämtkraft AB
- id:
- 105e65e27a891c3059bea580b831e5c1
- organization_id:
- 556103-3993
- name:
- Jämtkraft Elnät AB
- id:
- fd796b7b52a3dc921b66bd3e179e94b8
- organization_id:
- 556907-6200
- name:
- Fibra AB
- id:
- 987022b2ca6647b4c2f5b665c863dc6d
- organization_id:
- 556448-9150
- name:
- Mälarenergi AB
- id:
- 024c7741dac0893913aa97a6cf4d8988
- organization_id:
- 556554-1504
- name:
- Mälarenergi Elnät AB
- id:
- 5c044a8b80f8b07e484f1ad1cb4c7ca1
- organization_id:
- 556554-1470
- name:
- Mälarenergi Forsäljning AB
- id:
- e39bf258497a4b4f19e4713474abcfc7
- organization_id:
- 556016-6018
- name:
- Mälarenergi Vattenkraft AB
- id:
- 21df5d6a48c8ab5bbe6a15bcb8365163
- organization_id:
- 556210-6855
- name:
- Stockholm Vatten AB
- id:
- bf935d5613fb07c2590ae26a2232efe2
- organization_id:
- 202100-4284
- name:
- Affärsverket svenska kraftnät
- id:
- bf935d5613fb07c2590ae26a2232efe2
- organization_id:
- 202100-4284
- name:
- Affärsverket svenska kraftnät
- id:
- 3dcc77429bb6bc9ba3e6a8bdb8866d96
- organization_id:
- 556537-4724
- name:
- Gotlands Elnät AB
- id:
- 760df2ddf41475516ebe4066eea62f7f
- organization_id:
- 556008-2157
- name:
- Gotlands Energi AB, Nät
- id:
- 974fa5147a529f3e7b63d69b941f5009
- organization_id:
- 556008-2157
- name:
- Gotlands Energi AB, Värme
- id:
- ca2e07e05f92dbc0283d7f960f4a54b6
- organization_id:
- 556241-9209
- name:
- Haparanda Värmeverk AB
- id:
- 718233040dbc14fed7b401cb996f921c
- organization_id:
- 556241-9191
- name:
- Övertorneå Energi Försäljning AB
- id:
- f65a7327903078946c72c6ae83c10b9a
- organization_id:
- 556565-6864
- name:
- Västerberglagens Elnät AB
- id:
- 4265fd1730d33b2c3e32de781d246d4c
- organization_id:
- 556565-6856
- name:
- Västerbergslagen Energi AB
- id:
- 3a07cfaca7ffef22cccf6905ec91d2bf
- organization_id:
- 556036-2138
- name:
- Vattenfall AB
- id:
- 04c102dd247de2290f82419f55df268b
- organization_id:
- 556257-5661
- name:
- Vattenfall Elanläggningar AB
- id:
- 232b854411bb843bfe72e0ebd51ca07d
- organization_id:
- 556417-0800
- name:
- Vattenfall Eldistribution AB
- id:
- 8b62ffc6ebdc907214fa66d1645ddf18
- organization_id:
- 7307131
- name:
- Burbo Extension Ltd.
- id:
- 4edeb80d3e283d430ee7190868e7f1ba
- organization_id:
- 6730824
- name:
- Ørsted (UK) Ltd
- id:
- af7d7e95960b3690cd2206e5364a899a
- organization_id:
- 988807648
- name:
- Tensio TS AS
- heading:
- Achilles Utilities NCE qualification - notification of qualification system - Works
- description:
- ACHILLES UTILITIES NCE is a joint qualification system for suppliers and contractors to utilities in Nordics and Central Europe. It's operated by Achilles under Article 77 of Directive 2014/25/EU. The subscribing utilities will use ACHILLES UTILITIES NCE for tenderer selection for contracts and framework agreements subject to EU procurement rules, but reserve the right to publish individual notices for specific requirements where they deem it necessary, even though they relate to the product and service categories covered by ACHILLES UTILITIES NCE. The qualification system may be used for contracts not subject to EU procurement rules at each subscriber's discretion. An overview of products and services acquired through ACHILLES UTILITIES NCE is available here https://www.achilles.com/wp/wp-content/uploads/2023/05/Product-and-Service-Code-Guide-EN.pdf
- location_id:
1 results
- NOZZZ
- estimatedValue:
- not reported by source
- type:
- QUALIFICATION_SCHEME
- allTypes:
2 results
- QUALIFICATION_SCHEME
- COMPETITION
- status:
- not reported by source
- issueDate:
- 2024-11-17T13:33:10Z
- deadline:
- not reported by source
- sentToTed:
- yes
- publicationDate:
- 2024-11-17
- placeOfPerformance:
- procurementStrategicLabels:
No results.
- limit:
- 25
- offset:
- 0
- returned:
- 10
- has_more_results:
- yes
- truncated:
- yes
- next_offset:
- 10
Will you use the result in generated code?
Is data missing or incorrect? Send feedback about this result.
Continue exploring
How an AI agent should use this page
Ground rule: Navigate with HTML GET links to keep explanations and relationships. Use the page's JSON alternative only when concrete values must be extracted, compared or computed.
How to use the search_doffin lookup
- Replace the placeholders in the HTML GET template; remove optional parameters you do not need.
- Check types, units, limits and ID formats in the parameter table.
- Follow linked results to canonical pages before combining sources.
Misreading to avoid: An empty list means "no results for this lookup". An error message or unavailable source does not mean the data does not exist.
Source-specific next step
- Follow the notice ID to the canonical page; use CPV and location codes to narrow broad free-text searches.
Go to the source page for other operations. Use the JSON template only after the HTML result shows that the parameters and source are correct.
AI agent? Read the complete navigation and programming guide.