Browse Source

added multitags ntags, added word contain tag search, added better double checking because of changing links bug

master
alpcentaur 10 months ago
parent
commit
784cb844f8
13 changed files with 1039 additions and 600 deletions
  1. +115
    -20
      fdb_spider_interface.py
  2. +0
    -579
      fdb_spider_interface.py.save
  3. +1
    -1
      new_message_file.txt
  4. +12
    -0
      roomhistories/65735686ebb39dd248d0c623.txt
  5. +13
    -0
      roomhistories/657b0a50ebb39dd248d2e11b.txt
  6. +106
    -0
      roomhistories/657c97e5ebb39dd248d38d51.txt
  7. +83
    -0
      roomhistories/657cdbe4ebb39dd248d38fe5.txt
  8. +0
    -0
      roomhistories/6580c666ebb39dd248d3f4c5.txt
  9. +268
    -0
      roomhistories/65817095ebb39dd248d4412b.txt
  10. +0
    -0
      roomhistories/65817954ebb39dd248d4454a.txt
  11. +27
    -0
      roomhistories/658184ecebb39dd248d44a18.txt
  12. +27
    -0
      roomhistories/658185e4ebb39dd248d44aad.txt
  13. +387
    -0
      roomhistories/65818946ebb39dd248d44c69.txt

+ 115
- 20
fdb_spider_interface.py View File

@ -110,7 +110,7 @@ if __name__ == '__main__':
aftersix = False
already_updated = False
if aftersix == True and already_updated == False:
if aftersix == True and already_updated == False and aftersix == False:
room_list = []
rooms = os.listdir('rooms')
@ -182,28 +182,74 @@ if __name__ == '__main__':
name_data_lower = [word.lower() for word in data[room_fdb][i][key]["name"].split(' ')]
info_data_lower = [word.lower() for word in data[room_fdb][i][key]["info"].split(' ')]
text_data_lower = [word.lower() for word in data[room_fdb][i][key]["text"].split(' ')]
tag_list = []
for tag in eval(room_tags):
if tag.lower() in (name_data_lower or info_data_lower or text_data_lower):
contains_tag = True
if '_' in tag:
ntags = tag.split('_')
ntags_length = len(ntags)
ntag_count = 0
for nword in name_data_lower:
for ntag in ntags:
if ntag.lower() in nword:
ntag_count += 1
if ntag_count == ntags_length:
contains_tag = True
tag_list.append(tag + ' in name')
ntag_count = 0
for iword in info_data_lower:
for ntag in ntags:
if ntag.lower() in iword:
ntag_count += 1
if ntag_count == ntags_length:
contains_tag = True
tag_list.append(tag + ' in info')
ntag_count = 0
for tword in text_data_lower:
ntag_count = 0
for ntag in ntags:
if ntag.lower() in tword:
ntag_count += 1
if ntag_count == ntags_length:
contains_tag = True
tag_list.append(tag + ' in text')
else:
for nword in name_data_lower:
if tag.lower() in nword:
contains_tag = True
tag_list.append(tag + ' in name')
for iword in info_data_lower:
if tag.lower() in iword:
contains_tag = True
tag_list.append(tag + ' in info')
for tword in text_data_lower:
if tag.lower() in tword:
contains_tag = True
tag_list.append(tag + ' in text')
if contains_tag == True:
try:
url = data[room_fdb][i][key]["domain"]
except:
url = data[room_fdb][i][key]["link"]
entry_message = '<' + url + '|' + data[room_fdb][i][key]["name"]+ '>' + '\n' + data[room_fdb][i][key]["info"]
entry_message = '<' + url + '|' + data[room_fdb][i][key]["name"]+ '>' + '\n' + data[room_fdb][i][key]["info"] + '\n' + str(tag_list)
entry_message_identifier = '<' + url + '|' + data[room_fdb][i][key]["name"]+ '>'
message_was_already_there = False
for message in room_history_list:
#print('message to oi ', message[:-1])
if entry_message_identifier == message[:-1]:
print('message that gets checked with identifier ', message[:-1])
print('the entry message identifier is:', entry_message_identifier)
if url in message[:-1] or data[room_fdb][i][key]["name"] in message:
message_was_already_there = True
if message_was_already_there == False:
print('went into already there false')
api.send_message(entry_message, room[0])
print('before writing')
try:
@ -233,7 +279,8 @@ if __name__ == '__main__':
n += 1
print(n)
if n%100 == 0:
print(n)
try:
#print('getting the room history')
@ -346,7 +393,6 @@ if __name__ == '__main__':
if user_input_list[0] == 'printcommands':
answer = """
To print all available rooms and their configuration, use
command : `printrooms`
-----------------------------------------------------------------------------------------
@ -375,8 +421,7 @@ if __name__ == '__main__':
-----------------------------------------------------------------------------------------
To add tags to the existing tags use
command : `addtags <room-id> <tag-list-without-spaces>`
example : `updaterooms 6572012bebb39dd248d08320 ['tag1','tag2','tag3']`
example : `addtags 6572012bebb39dd248d08320 ['tag1','tag2','tag3']`
"""
@ -459,7 +504,7 @@ if __name__ == '__main__':
room_history_file = open('roomhistories/' + room[0] + '.txt', 'x')
room_history_file.close()
except:
print('reading from roomhistory')
print('reading from roomhistory which is already there')
room_history_list = []
with open('roomhistories/' + room[0] + '.txt') as room_history_file:
@ -496,11 +541,61 @@ if __name__ == '__main__':
name_data_lower = [word.lower() for word in data[room_fdb][i][key]["name"].split(' ')]
info_data_lower = [word.lower() for word in data[room_fdb][i][key]["info"].split(' ')]
text_data_lower = [word.lower() for word in data[room_fdb][i][key]["text"].split(' ')]
tag_list = []
for tag in eval(room_tags):
if tag.lower() in (name_data_lower or info_data_lower or text_data_lower):
contains_tag = True
if '_' in tag:
ntags = tag.split('_')
ntags_length = len(ntags)
ntag_count = 0
for nword in name_data_lower:
for ntag in ntags:
if ntag.lower() in nword:
ntag_count += 1
if ntag_count == ntags_length:
contains_tag = True
tag_list.append(tag + ' in name')
ntag_count = 0
for iword in info_data_lower:
for ntag in ntags:
if ntag.lower() in iword:
ntag_count += 1
if ntag_count == ntags_length:
contains_tag = True
tag_list.append(tag + ' in info')
ntag_count = 0
for tword in text_data_lower:
ntag_count = 0
for ntag in ntags:
if ntag.lower() in tword:
ntag_count += 1
if ntag_count == ntags_length:
contains_tag = True
tag_list.append(tag + ' in text')
#print('------------------')
#print(name_data_lower, info_data_lower, text_data_lower, room[0], room_tags)
else:
for tag in eval(room_tags):
for nword in name_data_lower:
if tag.lower() in nword:
contains_tag = True
tag_list.append(tag + ' in name')
for iword in info_data_lower:
if tag.lower() in iword:
contains_tag = True
tag_list.append(tag + ' in info')
for tword in text_data_lower:
if tag.lower() in tword:
contains_tag = True
tag_list.append(tag + ' in text')
if contains_tag == True:
try:
url = data[room_fdb][i][key]["domain"]
except:
@ -508,14 +603,15 @@ if __name__ == '__main__':
print('101110001101010010010101000111')
entry_message = '<' + url + '|' + data[room_fdb][i][key]["name"]+ '>' + '\n' + data[room_fdb][i][key]["info"]
entry_message = '<' + url + '|' + data[room_fdb][i][key]["name"]+ '>' + '\n' + data[room_fdb][i][key]["info"] + '\n' + str(tag_list)
entry_message_identifier = '<' + url + '|' + data[room_fdb][i][key]["name"]+ '>'
message_was_already_there = False
for message in room_history_list:
#print('message', message[:-1], 'identifier', entry_message_identifier)
if entry_message_identifier == message[:-1]:
print('message', message[:-1], 'identifier', entry_message_identifier)
if url in message[:-1] or data[room_fdb][i][key]["name"] in message:
message_was_already_there = True
if message_was_already_there == False:
@ -620,4 +716,3 @@ if __name__ == '__main__':
time.sleep(1)
api.send_message('Ich bin wieder bereit für Konfigurationsinput : )', room_id)
time.sleep(1)

+ 0
- 579
fdb_spider_interface.py.save View File

@ -1,579 +0,0 @@
import os
from rocketchat.api import RocketChatAPI
import configparser
import json
import requests
import yaml
import subprocess
config = configparser.ConfigParser()
config.read('config.ini')
botname = config['Chat']['username']
botpassword = config['Chat']['password']
server_url = config['Chat']['URL']
room_id = config['Chat']['room_id']
bot_user_id = config['Chat']['bot_user_id']
spider_directory = config['Spider']['spider_directory']
# here comes the functions to talk to gpt
# For local streaming, the websockets are hosted without ssl - http://
HOST = 'localhost:5000'
URI = f'http://{HOST}/api/v1/chat'
#URI = f'http://{HOST}/api'
# http://192.168.9.197:5000/api/v1/chat
# For reverse-proxied streaming, the remote will likely host with ssl - https://
# URI = 'https://your-uri-here.trycloudflare.com/api/v1/chat'
if __name__ == '__main__':
api = RocketChatAPI(settings={'username': botname, 'password': botpassword, 'domain': server_url})
# api.send_message('Ciao, I am the fdb-spider', room_id)
#myinfo = api.get_my_info()
<<<<<<< HEAD
#room_history = api.get_private_room_history(room_id)
#print(room_history['messages'][0]['msg'])
# print(myinfo)
rooms = api.get_private_rooms()
print('blubidab oioioi', rooms)
=======
#print(myinfo)
#rooms = api.get_private_rooms()
#print(rooms)
>>>>>>> origin/master
# api.send_message('Ole', room_id)
n = 0
import time
import schedule
#change to False here, if you want to have the update run at server start
already_updated = True
start = True
import datetime
from datetime import timedelta
while True:
time.sleep(2)
#already_updated = True
now = datetime.datetime.now()
current_hour = now.strftime("%H")
#print(current_hour)
# run variable update and creation at start
if start == True:
room_list = []
rooms = os.listdir('rooms')
for room in rooms:
room_file = open('rooms/' + room, 'r')
room_file_raw = room_file.read()
room_file.close()
room_file_list = room_file_raw.split('§%§%')
print(room_list)
print(room)
print(room_file_list)
room_list.append([room[:-4], room_file_list[0], room_file_list[1], room_file_list[2]])
with open(spider_directory + '/spiders/config.yaml' , "r") as stream:
try:
config = yaml.safe_load(stream)
except yaml.YAMLError as exc:
print(exc)
fdb_list = []
#print(config)
for key in config:
fdb_list.append(key)
start = False
if int(current_hour) > 11:
aftersix = True
if int(current_hour) <= 11:
aftersix = False
already_updated = False
if aftersix == True and already_updated == False:
room_list = []
rooms = os.listdir('rooms')
for room in rooms:
room_file = open('rooms/' + room, 'r')
room_file_raw = room_file.read()
room_file.close()
room_file_list = room_file_raw.split('§%§%')
room_list.append([room[:-4], room_file_list[0], room_file_list[1], room_file_list[2]])
with open(spider_directory + '/spiders/config.yaml' , "r") as stream:
try:
config = yaml.safe_load(stream)
except yaml.YAMLError as exc:
print(exc)
fdb_list = []
#print(config)
for key in config:
fdb_list.append(key)
data = dict({})
for room in room_list:
print(room[0])
room_fdbs = room[2]
room_tags = room[3]
#subprocess.run(["python", spider_directory + 'main.py', fdbs])
date = datetime.datetime.now() - timedelta(days=3)
room_history = api.get_room_history(room[0], oldest=date, latest=datetime.datetime.now())
for room_fdb in eval(room_fdbs):
#print('room_fdb',room_fdb, 'fdb_list',fdb_list)
try:
iteration_var_list = config.get(room_fdb).get("entry-list").get("iteration-var-list")
except Exception as e:
print('there was an error with the entry-list parameter in the config regarding the fdb ', room_fdb)
if room_fdb in fdb_list and room_fdb not in [key for key in data]:
iterdict = {}
for i in eval(iteration_var_list):
f = open(spider_directory + "/spiders/output/" + room_fdb + str(i) + "entryList.txt")
text = f.read()
dictionary_entry_list = eval(text)
iterdict[i] = dictionary_entry_list
data[room_fdb] = iterdict
for i in eval(iteration_var_list):
try:
print(room_fdb, i)
for key in data[room_fdb][i]:
contains_tag = False
name_data_lower = [word.lower() for word in data[room_fdb][i][key]["name"].split(' ')]
info_data_lower = [word.lower() for word in data[room_fdb][i][key]["info"].split(' ')]
text_data_lower = [word.lower() for word in data[room_fdb][i][key]["text"].split(' ')]
for tag in eval(room_tags):
if tag.lower() in (name_data_lower or info_data_lower or text_data_lower):
contains_tag = True
if contains_tag == True:
try:
url = data[room_fdb][i][key]["domain"]
except:
url = data[room_fdb][i][key]["link"]
message_was_already_there = False
for message in room_history['messages']:
if name_data_lower.join(' ') in message['msg']:
message_was_already_there = True
if message_was_already_there == False:
entry_message = '<' + url + '|' + data[room_fdb][i][key]["name"]+ '>' + '\n' + data[room_fdb][i][key]["info"]
api.send_message(entry_message, room[0])
except Exception as e:
print("probably i was not there in last page, original error is:", e)
#print('data',data['giz'][2],'data')
already_updated = True
# if datestime.split over etc and updated= true etc
n += 1
print(n)
try:
#print('getting the room history')
date = datetime.datetime.now() - timedelta(days=3)
room_history = api.get_private_room_history(room_id, oldest=date)
except Exception as e:
time.sleep(10)
api = RocketChatAPI(settings={'username': botname, 'password': botpassword, 'domain': server_url})
time.sleep(5)
room_history = api.get_private_room_history(room_id, oldest=date)
print('got a connection error, original message is:',e)
messages_list = []
for message in room_history['messages']:
messages_list.append(message)
if len(messages_list) >= 1:
#print('blub', messages_list)
latest_message_user_id = messages_list[0]['u']['_id']
latest_message_user_username = messages_list[0]['u']['username']
latest_message = messages_list[0]['msg']
latest_message_id = messages_list[0]['_id']
new_message_file = open('new_message_file.txt', 'r')
new_message = new_message_file.read()
new_message_file.close()
new_message_list = new_message.split('§%§%')
#print(latest_message, new_message_list[0])
if new_message_list[0] != latest_message and new_message_list[1] != latest_message_id and latest_message_user_id != bot_user_id:
answer = 'Ich habe kein Kommando erhalten.'
new_message_file = open('new_message_file.txt', 'w')
new_message_file.write(latest_message + '§%§%' + latest_message_id)
new_message_file.close()
user_input = latest_message
user_input_list = user_input.split(' ')
if user_input_list[0] == 'addtags':
try:
room_id_add_tags = user_input_list[1]
except:
room_id_add_tags = 'NONE'
try:
new_tags = user_input_list[2]
except:
new_tags = 'NONE'
try:
thirdarg = user_input_list[3]
except:
thirdarg = 'NONE'
if len(room_id_add_tags) >= 1 and len(new_tags) >= 1 and thirdarg == 'NONE':
try:
room_file_add_tags = open('rooms/' + user_input_list[1] + '.txt', 'r')
room_info_raw = room_file_add_tags.read()
room_file_add_tags.close()
room_info = room_info_raw.split('§%§%')
tag_list = eval(room_info[-1])
for tag in eval(user_input_list[2]):
if tag not in tag_list:
tag_list.append(tag)
room_file_add_tags = open('rooms/' + user_input_list[1] + '.txt', 'w')
room_file_add_tags.write( str(room_info[0]) + '§%§%' + str(room_info[1]) + '§%§%' + str(tag_list))
room_file_add_tags.close()
answer = 'the updated tag list is' + str(tag_list)
except Exception as e:
print('error opening, original error is:', e)
answer = "The room_id to update the tags was not found"
if user_input_list[0] == 'printtags':
try:
room_id_to_print_tags = user_input_list[1]
except:
answer = "after the command printtags, the second argument has to be the room id.. use printrooms and look up the id of the room you want to print the tags"
room_id_to_print_tags = 'NONE'
if room_id_to_print_tags != 'NONE':
try:
room_file = open('rooms/' + room_id_to_print_tags + '.txt', 'r')
room_info_raw = room_file.read()
room_file.close()
room_info = room_info_raw.split('§%§%')
tag_list = eval(room_info[-1])
answer = tag_list
except Exception as e:
print('error opening, original error is:', e)
answer = "The room_id to get the tags was not found"
if user_input_list[0] == 'printcommands':
answer = """
To print all available rooms and their configuration, use
command : `printrooms`
-----------------------------------------------------------------------------------------
To print all available fdbs, use
command : `printfdbs`
-----------------------------------------------------------------------------------------
To update all rooms use
command : `updaterooms`
-----------------------------------------------------------------------------------------
To update one room use the room_id from the output of printrooms:
command : `updaterooms <room-id>`
example : `updaterooms 6572012bebb39dd248d08320`
-----------------------------------------------------------------------------------------
To create a room use following command, but be sure to not have spaces in your lists,
as a space indicates a new command argument:
command : `createroom <room-name> <list-fdbs> <list-tags>`
example : `createroom room-test-1 ['giz','fdb2'] ['tag1','tag2','tag3']`
-----------------------------------------------------------------------------------------
To delete a room use
command : `deleteroom <room-id>`
example : `deleteroom 6572012bebb39dd248d08320`
-----------------------------------------------------------------------------------------
To print the tags of a room use
command : `printtags <room-id>`
example : `printtags 6572012bebb39dd248d08320`
-----------------------------------------------------------------------------------------
To add tags to the existing tags use
command : `addtags <room-id> <tag-list-without-spaces>`
example : `updaterooms 6572012bebb39dd248d08320 ['tag1','tag2','tag3']`
"""
if user_input_list[0] == 'printrooms':
room_was_found = False
# get all the rooms
import os
room_list = []
rooms = os.listdir('rooms')
for room in rooms:
room_file = open('rooms/' + room, 'r')
room_file_raw = room_file.read()
room_file.close()
room_file_list = room_file_raw.split('§%§%')
room_list.append([room[:-4], room_file_list[0], room_file_list[1], room_file_list[2]])
#print(room_list)
answer = str(room_list)
if user_input_list[0] == 'updaterooms':
try:
if len(user_input_list[1]) >= 1:
room_to_update = user_input_list[1]
except Exception as e:
room_to_update = 'NONE'
room_list = []
rooms = os.listdir('rooms')
for room in rooms:
room_file = open('rooms/' + room, 'r')
room_file_raw = room_file.read()
room_file.close()
room_file_list = room_file_raw.split('§%§%')
room_list.append([room[:-4], room_file_list[0], room_file_list[1], room_file_list[2]])
with open(spider_directory + '/spiders/config.yaml' , "r") as stream:
try:
config = yaml.safe_load(stream)
except yaml.YAMLError as exc:
print(exc)
fdb_list = []
#print(config)
for key in config:
fdb_list.append(key)
answer = "Ich update die Rooms auf Basis der Daten von heute morgen um 6 Uhr.."
data = dict({})
for room in room_list:
if room[0] == room_to_update or room_to_update == 'NONE':
room_was_found = True
print(room[0])
room_fdbs = room[2]
room_tags = room[3]
# not running get_rooms because disfunctional
#subprocess.run(["python", spider_directory + 'main.py', fdbs])
#myinfo = api.get_room_info(room[0])
#print(myinfo)
#roomid = "'657cbeccebb39dd248d38ec3'"
#roomoioioi = api.get_user_info(bot_user_id)
#print(roomoioioi)
#room_history_updateroom = api.get_private_room_history(room[0])
# reading from txt state history instead
for room_fdb in eval(room_fdbs):
#print('room_fdb',room_fdb, 'fdb_list',fdb_list)
try:
iteration_var_list = config.get(room_fdb).get("entry-list").get("iteration-var-list")
except Exception as e:
print('there was an error with the entry-list parameter in the config regarding the fdb ', room_fdb)
if room_fdb in fdb_list and room_fdb not in [key for key in data]:
iterdict = {}
for i in eval(iteration_var_list):
f = open(spider_directory + "/spiders/output/" + room_fdb + str(i) + "entryList.txt")
text = f.read()
dictionary_entry_list = eval(text)
iterdict[i] = dictionary_entry_list
data[room_fdb] = iterdict
for i in eval(iteration_var_list):
try:
print(room_fdb, i)
for key in data[room_fdb][i]:
contains_tag = False
name_data_lower = [word.lower() for word in data[room_fdb][i][key]["name"].split(' ')]
info_data_lower = [word.lower() for word in data[room_fdb][i][key]["info"].split(' ')]
text_data_lower = [word.lower() for word in data[room_fdb][i][key]["text"].split(' ')]
for tag in eval(room_tags):
if tag.lower() in (name_data_lower or info_data_lower or text_data_lower):
contains_tag = True
if contains_tag == True:
try:
url = data[room_fdb][i][key]["domain"]
except:
url = data[room_fdb][i][key]["link"]
print('101110001101010010010101000111')
message_was_already_there = False
for message in room_history['messages']:
if name_data_lower.join(' ') in message['msg']:
message_was_already_there = True
if message_was_already_there == False:
entry_message = '<' + url + '|' + data[room_fdb][i][key]["name"]+ '>' + '\n' + data[room_fdb][i][key]["info"]
api.send_message(entry_message, room[0])
except Exception as e:
print("probably i was not there in last page, original error is:", e)
if room_to_update == 'NONE':
answer = 'No room was specified, all rooms will get an update based on the data available'
if room_was_found == False and room_to_update != 'NONE':
answer = 'The room you specified does not exist, or there are no rooms configured, try the command without argument -> updaterooms'
if room_was_found == True and room_to_update != 'NONE':
answer = "I am updating the specified room based on the data in fdb-spider/spiders/output.."
if user_input_list[0] == 'printfdbs':
answer = str(fdb_list)
if len(user_input_list) > 1:
answer = 'Die Syntax zum Ausgeben der konfigurierten Förderdatenbanken hat einen Fehler. Versuche es erneut, mit -> printfdbs'
if user_input_list[0] == 'deleteroom':
try:
room_id_del = user_input_list[1]
except Exception as e:
room_id_del = 'NONE'
print(e)
os.remove("rooms/" + room_id_del + ".txt")
anwer = 'deleting the requested room..'
if len(user_input_list) > 2:
answer = 'Die Syntax zum Löschen eines Raumes hat einen Fehler. Versuche es erneut, nach dem Muster -> deleteroom <room_id>'
if user_input_list[0] == 'createroom':
try:
room_name = user_input_list[1]
except Exception as e:
room_name = 'NONE'
print(e)
try:
databases = user_input_list[2]
except Exception as e:
databases = 'NONE'
print(e)
try:
filters = user_input_list[3]
except Exception as e:
filters = 'NONE'
print(e)
if len(user_input_list) > 3:
answer = 'Die Syntax hat einen Fehler. Wahrscheinlich sind Leerzeichen in den Listen. Leerzeichen definieren die Syntax. Versuche es erneut, nach dem Muster -> createroom room1 ["fdb1","fdb2"] ["tag1","tag2"]'
if room_name == 'NONE' or databases == 'NONE' or filters == 'NONE':
answer = 'Um einen Raum zu erstellen, in dem neueste Einträge geteilt werden, lautet die Syntax: createroom <Raumname> <Liste-Datenbanken> <Liste-Filtertags>'
else:
try:
new_room = api.create_public_room(room_name,
members=[latest_message_user_username],
read_only=False)
new_room_id = new_room['channel']['_id']
room_file = open('rooms/' + new_room_id + '.txt', 'w')
room_file.write( room_name + '§%§%' + databases + '§%§%' + filters)
room_file.close()
answer = 'Der Command wurde übermittelt'
except Exception as e:
print('it was not able to create the room, the original error message is:', e)
answer = 'There was an error creating the room, look up the logs.. the original error was: ' + str(e)
#print('oi', user_input)
api.send_message('Die Anfrage wird bearbeitet..', room_id)
# here comes the code interacting with the spiders output json
#answer = 'the up to date entries are: oi Oi Oi!'
api.send_message(answer, room_id)
time.sleep(1)
api.send_message('Ich bin wieder bereit für Konfigurationsinput : )', room_id)
time.sleep(1)

+ 1
- 1
new_message_file.txt View File

@ -1 +1 @@
updaterooms 6572012bebb39dd248d08320§%§%Hezc97aeCPH2YNGKX
updaterooms 65817095ebb39dd248d4412b§%§%mJkq7PYpcaZYEDjNp

+ 12
- 0
roomhistories/65735686ebb39dd248d0c623.txt View File

@ -0,0 +1,12 @@
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?13|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?18|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1FHRHAV6/de/overview?21|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FLG7NZX/de/overview?21|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FL7EWT4/de/overview?21|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1F0U9P72/de/overview?21|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?62|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?63|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?68|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?72|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?74|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?75|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>

+ 13
- 0
roomhistories/657b0a50ebb39dd248d2e11b.txt View File

@ -0,0 +1,13 @@
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1LJTRMAE/de/overview?4|81301196a-Flexibilisierungstraining für Betreiber bestehender thermischer Kraftwerke in Indien>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1LJTRMAE/de/overview?31|81301196a-Flexibilisierungstraining für Betreiber bestehender thermischer Kraftwerke in Indien>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1LJTRMAE/de/overview?35|81301196a-Flexibilisierungstraining für Betreiber bestehender thermischer Kraftwerke in Indien>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1L7JJRLZ/de/overview?39|81301196a-Flexibilisierungstraining für Betreiber bestehender thermischer Kraftwerke in Indien>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7NZGC4/de/overview?39|81301196a-Flexibilisierungstraining für Betreiber bestehender thermischer Kraftwerke in Indien>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L0ADJY1/de/overview?39|81301196a-Flexibilisierungstraining für Betreiber bestehender thermischer Kraftwerke in Indien>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYYC41G/de/overview?39|81301196a-Flexibilisierungstraining für Betreiber bestehender thermischer Kraftwerke in Indien>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FDUSEVN/de/overview?39|81301196a-Flexibilisierungstraining für Betreiber bestehender thermischer Kraftwerke in Indien>
<https://www.efre.nrw.de/wege-zur-foerderung/foerderungen-in-2021-2027/nrw-patent-validierung/|NRW-Patent-Validierung>
<https://www.efre.nrw.de/wege-zur-foerderung/foerderungen-in-2021-2027/start-up-transfernrw/|Start-up Transfer.NRW >
<https://www.bmbf.de/bmbf/shareddocs/bekanntmachungen/de/2021/10/2021-10-07-%C3%84nderungsbekanntmachung-Energiewende.html;jsessionid=DBC5E9DC47C0F9ECE7F9FB9F32E6FCC3.live092|Änderung der Bekanntmachung des 7. Energieforschungsprogramms der Bundesregierung "Innovationen für die Energiewende">
<https://www.energieforschung.de/spotlights/reallabore|7. Energieforschungsprogramm: Förderkonzept "Reallabore der Energiewende">
<https://www.bafa.de/DE/Wirtschafts_Mittelstandsfoerderung/Beratung_Finanzierung/Stark/stark_node.html;jsessionid=C653915F8BDC4D18758A7242F52CF406.2_cid378|STARK - Stärkung der Transformationsdynamik und Aufbruch in den Revieren und an den Kohlekraftwerkstandorten>

+ 106
- 0
roomhistories/657c97e5ebb39dd248d38d51.txt View File

@ -18,3 +18,109 @@
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CH3HSV5/de/overview?76|81296917-Creating a Green Business Development Ecosystem in Uzbekistan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQEEDRE/de/overview?82|81295354-Framework Agreement: ProMOVIS - Short Term Expert Support on Sustainable and Inclusive Mobility in Colombia>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EY3KQJR/de/overview?96|81296362-Supporting a Sustainable Waste and Circular Economy in Rwanda>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?17|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQWGUKJ/de/overview?40|81301134 - Provide recommendations for Donor Interventions to support Green Industrial Policies and Just Transition Implications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10EM1JEH/de/overview?48|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195H3PLS/de/overview?59|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y108G2C21/de/overview?62|81301718-Strengthening a Green Business Development Service (BDS) Ecosystem in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?0|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?22|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQWGUKJ/de/overview?43|81301134 - Provide recommendations for Donor Interventions to support Green Industrial Policies and Just Transition Implications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10EM1JEH/de/overview?50|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195H3PLS/de/overview?61|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y108G2C21/de/overview?64|81301718-Strengthening a Green Business Development Service (BDS) Ecosystem in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?70|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CH3HSV5/de/overview?78|81296917-Creating a Green Business Development Ecosystem in Uzbekistan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQEEDRE/de/overview?84|81295354-Framework Agreement: ProMOVIS - Short Term Expert Support on Sustainable and Inclusive Mobility in Colombia>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK0GJJK/de/overview?4|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FD2L0CV/de/overview?31|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L3P07U6/de/overview?47|81301134 - Provide recommendations for Donor Interventions to support Green Industrial Policies and Just Transition Implications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19VW1UTQ/de/overview?54|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195CV0A2/de/overview?60|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y196MHKS9/de/overview?63|81301718-Strengthening a Green Business Development Service (BDS) Ecosystem in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CV0XTS6/de/overview?69|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY14RZV37Z/de/overview?77|81296917-Creating a Green Business Development Ecosystem in Uzbekistan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1E89ZEXB/de/overview?83|81295354-Framework Agreement: ProMOVIS - Short Term Expert Support on Sustainable and Inclusive Mobility in Colombia>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y108PV89Z/de/overview?47|81301134 - Provide recommendations for Donor Interventions to support Green Industrial Policies and Just Transition Implications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1L5JH3QC/de/overview?54|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19S77QHN/de/overview?60|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y196XHYB3/de/overview?63|81301718-Strengthening a Green Business Development Service (BDS) Ecosystem in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CVBA9A5/de/overview?69|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CH2BJG2/de/overview?77|81296917-Creating a Green Business Development Ecosystem in Uzbekistan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1F02T06C/de/overview?4|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYLRQ0V/de/overview?31|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?4|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FHLQV5M/de/overview?31|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1ERK9QYV/de/overview?47|81301134 - Provide recommendations for Donor Interventions to support Green Industrial Policies and Just Transition Implications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19265LU6/de/overview?54|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19W1KFGE/de/overview?60|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19S77QHN/de/overview?63|81301718-Strengthening a Green Business Development Service (BDS) Ecosystem in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FP1L6HC/de/overview?4|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?31|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1LG3DU4C/de/overview?47|81301134 - Provide recommendations for Donor Interventions to support Green Industrial Policies and Just Transition Implications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1944ERVG/de/overview?54|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1CHU0P2E/de/overview?60|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195CV0A2/de/overview?63|81301718-Strengthening a Green Business Development Service (BDS) Ecosystem in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C2Y1W4L/de/overview?69|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CMJJUR3/de/overview?77|81296917-Creating a Green Business Development Ecosystem in Uzbekistan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?12|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?27|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?29|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?38|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMDZBYH/de/overview?39|81303544-Advisory services to establish Gender Diversity Management in companies supporting the green transformation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?47|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?68|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQWGUKJ/de/overview?73|81301134 - Provide recommendations for Donor Interventions to support Green Industrial Policies and Just Transition Implications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10EM1JEH/de/overview?78|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?85|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?16|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?31|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?33|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?42|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMDZBYH/de/overview?43|81303544-Advisory services to establish Gender Diversity Management in companies supporting the green transformation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?51|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?70|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQWGUKJ/de/overview?75|81301134 - Provide recommendations for Donor Interventions to support Green Industrial Policies and Just Transition Implications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10EM1JEH/de/overview?79|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?86|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?24|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?39|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?41|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?50|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMDZBYH/de/overview?51|81303544-Advisory services to establish Gender Diversity Management in companies supporting the green transformation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?57|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?74|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQWGUKJ/de/overview?79|81301134 - Provide recommendations for Donor Interventions to support Green Industrial Policies and Just Transition Implications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?89|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?28|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?43|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?45|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?54|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMDZBYH/de/overview?55|81303544-Advisory services to establish Gender Diversity Management in companies supporting the green transformation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?61|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?78|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQWGUKJ/de/overview?83|81301134 - Provide recommendations for Donor Interventions to support Green Industrial Policies and Just Transition Implications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?93|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?31|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?46|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?48|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?57|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMDZBYH/de/overview?58|81303544-Advisory services to establish Gender Diversity Management in companies supporting the green transformation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?64|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?80|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQWGUKJ/de/overview?85|81301134 - Provide recommendations for Donor Interventions to support Green Industrial Policies and Just Transition Implications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?94|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?32|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?47|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?49|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?58|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMDZBYH/de/overview?59|81303544-Advisory services to establish Gender Diversity Management in companies supporting the green transformation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?65|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?81|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQWGUKJ/de/overview?86|81301134 - Provide recommendations for Donor Interventions to support Green Industrial Policies and Just Transition Implications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?95|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AXZRLFW/de/overview?14|81304134-Mission de coaching pour l'accompagnement de 15 entreprises industrielles pour le calcul de l"empreinte carbone selon la norme ISO 14067:2018>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AZS8RDL/de/overview?23|81303963 - Entwicklung eines webbasierten Trainings für Fachthemen im Bereich des nachhaltigem Entrepreneurships>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7Q0R4H/de/overview?67|81203546-Implementation of Gender Mainstreaming and Disability Inclusion activities in Dual TVET in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1F0U9P72/de/overview?71|Diverse unterschiedliche Güter für den Senegal>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CV0XTS6/de/overview?93|81296882-Unterstützungsleistungen für das SV Klima>

+ 83
- 0
roomhistories/657cdbe4ebb39dd248d38fe5.txt View File

@ -0,0 +1,83 @@
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10EM1JEH/de/overview?23|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195H3PLS/de/overview?37|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?68|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CH2BJG2/de/overview?75|81295153-INSolar-Promotion and Development of expansion plans for New and Innovative Solar PV applications in selected Indian Cities>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQEEDRE/de/overview?82|81295354-Framework Agreement: ProMOVIS - Short Term Expert Support on Sustainable and Inclusive Mobility in Colombia>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EY3KQJR/de/overview?96|81296362-Supporting a Sustainable Waste and Circular Economy in Rwanda>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?17|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10EM1JEH/de/overview?48|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195H3PLS/de/overview?59|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?22|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10EM1JEH/de/overview?50|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195H3PLS/de/overview?61|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?70|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CH2BJG2/de/overview?77|81295153-INSolar-Promotion and Development of expansion plans for New and Innovative Solar PV applications in selected Indian Cities>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQEEDRE/de/overview?84|81295354-Framework Agreement: ProMOVIS - Short Term Expert Support on Sustainable and Inclusive Mobility in Colombia>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FD2L0CV/de/overview?31|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19VW1UTQ/de/overview?54|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195CV0A2/de/overview?60|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CV0XTS6/de/overview?69|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CMJJUR3/de/overview?76|81295153-INSolar-Promotion and Development of expansion plans for New and Innovative Solar PV applications in selected Indian Cities>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1E89ZEXB/de/overview?83|81295354-Framework Agreement: ProMOVIS - Short Term Expert Support on Sustainable and Inclusive Mobility in Colombia>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1L5JH3QC/de/overview?54|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19S77QHN/de/overview?60|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CVBA9A5/de/overview?69|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY14RZV37Z/de/overview?76|81295153-INSolar-Promotion and Development of expansion plans for New and Innovative Solar PV applications in selected Indian Cities>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYLRQ0V/de/overview?31|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FHLQV5M/de/overview?31|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19265LU6/de/overview?54|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19W1KFGE/de/overview?60|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?31|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1944ERVG/de/overview?54|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1CHU0P2E/de/overview?60|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C2Y1W4L/de/overview?69|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CFK2PXS/de/overview?76|81295153-INSolar-Promotion and Development of expansion plans for New and Innovative Solar PV applications in selected Indian Cities>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?12|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDL/de/overview?13|81298793-Trainings in new and Innovative Solar Applications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?27|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?29|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?38|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?68|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10EM1JEH/de/overview?78|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?85|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?16|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDL/de/overview?17|81298793-Trainings in new and Innovative Solar Applications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?31|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?33|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?42|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?70|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10EM1JEH/de/overview?79|81301886-Improving framework conditions for sustainable business development of MSMEs in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?86|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?24|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDL/de/overview?25|81298793-Trainings in new and Innovative Solar Applications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?39|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?41|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?50|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?74|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?89|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?28|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDL/de/overview?29|81298793-Trainings in new and Innovative Solar Applications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?43|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?45|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?54|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?78|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?93|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?31|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDL/de/overview?32|81298793-Trainings in new and Innovative Solar Applications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?46|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?48|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?57|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?80|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?94|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?32|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDL/de/overview?33|81298793-Trainings in new and Innovative Solar Applications>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?47|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?49|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?58|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?81|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?95|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AXZRLFW/de/overview?14|81304134-Mission de coaching pour l'accompagnement de 15 entreprises industrielles pour le calcul de l"empreinte carbone selon la norme ISO 14067:2018>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AZS8RDL/de/overview?23|81303963 - Entwicklung eines webbasierten Trainings für Fachthemen im Bereich des nachhaltigem Entrepreneurships>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7Q0R4H/de/overview?67|81203546-Implementation of Gender Mainstreaming and Disability Inclusion activities in Dual TVET in Kenya>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1F0U9P72/de/overview?71|Diverse unterschiedliche Güter für den Senegal>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CV0XTS6/de/overview?93|81296882-Unterstützungsleistungen für das SV Klima>

+ 0
- 0
roomhistories/6580c666ebb39dd248d3f4c5.txt View File


+ 268
- 0
roomhistories/65817095ebb39dd248d4412b.txt View File

@ -0,0 +1,268 @@
<https://www.klimaschutz.de/de/foerderung/foerderprogramme/investive-kommunale-klimaschutz-modellprojekte|Förderaufruf investive Kommunale Klimaschutz-Modellprojekte>
<https://www.evergabe-online.de//./tenderdetails.html?id=558754|Fischschutz/-abstieg Griesheim: Hydraulisch numerische Modellierung (HN-Modell) und 3D Computational Fluid Dynamics (CFD) Simulation>
<https://www.evergabe-online.de//./tenderdetails.html?id=550817|Akku-Sicherheitsladeschrank _ Battery Charge Pro Ladeschrank ION-Store-90 Modell IO 90.195.120.KW>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?13|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://www.evergabe-online.de//./tenderdetails.html?id=569384|Sicherheitsdienstleistungen für das Domplatz Open Air 2024>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?18|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://www.evergabe-online.de/tenderdetails.html?id=569470|Personaldienstleistung Mitarbeiter Layhersystemgerüst- und Dekorationsbau für das Domplatz Open Air 2024>
<https://www.evergabe-online.de/tenderdetails.html?id=569384|Sicherheitsdienstleistungen für das Domplatz Open Air 2024>
<https://www.evergabe-online.de/tenderdetails.html?id=558754|Fischschutz/-abstieg Griesheim: Hydraulisch numerische Modellierung (HN-Modell) und 3D Computational Fluid Dynamics (CFD) Simulation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1FHRHAV6/de/overview?21|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FLG7NZX/de/overview?21|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FL7EWT4/de/overview?21|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1F0U9P72/de/overview?21|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://www.evergabe-online.de/tenderdetails.html?id=573547|Kommunale Klimaschutzambitionen zielführend ausgestalten - Orientierungsrahmen für wirksame Klimaschutz-Zielstellungen in Kommunen>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?62|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?63|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?68|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://www.iuk-bayern.de/termine/bkm-kids-23-24|BayVFP: Künstliche Intelligenz – Data Science>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?72|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?74|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?75|81301941a-DesenreDatos II - Training of relevant actors on journalism, transparency and open data in Ecuador>
<https://www.evergabe-online.de/tenderdetails.html?id=577635|Öffentliche Ausschreibung (national) zur Beschaffung von Kuhstallmatten für das Versuchsgut Schädtbek / Laufstall S1, Bundesanstalt für Immobilienaufgaben, Direktion Rostock (VOEK 322-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578736|Erstellung eines Zuwanderungs- und Integrationsberichtes 2024>
<https://www.evergabe-online.de/tenderdetails.html?id=580005|Neubau Feuerwehrhaus Osterwieck 19 Elektroinstallation>
<https://www.evergabe-online.de/tenderdetails.html?id=580000|Neubau Feuerwehrhaus Osterwieck 18 Heizung-, Sanitär- und Lüftungsarbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=579990|Beschaffung einer Protokollierungssoftware>
<https://www.evergabe-online.de/tenderdetails.html?id=579962|Instandsetzung des Schlossensemble Mosigkau - Vermessungsleistungen>
<https://www.evergabe-online.de/tenderdetails.html?id=579957|Instandsetzung des Schlossensemble Mosigkau - Baubegleitender Restaurator | Holzschutztechnische Untersuchung>
<https://www.evergabe-online.de/tenderdetails.html?id=579986|Neubau Feuerwehrhaus Osterwieck 14 Fließenlegerarbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=579979|Lieferung Brother Toner und Trommeleinheit, Landratsamt Altenburger Land, Lindenaustraße 9, 04600 Altenburg>
<https://www.evergabe-online.de/tenderdetails.html?id=579956|Neubau Feuerwehrhaus Osterwieck 13 Maler- und Bodenbelagsarbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=579953|Reparatur und Erneuerung Trinkwassernetz- Rahmenvereinbarung 2024-2026>
<https://www.evergabe-online.de/tenderdetails.html?id=579944|Neubau Feuerwehrhaus Osterwieck 12 Estricharbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=579947|Festakt und Abendveranstaltung für 850 - 1000 Personen für die Bundesanstalt Technisches Hilfswerk (THW)>
<https://www.evergabe-online.de/tenderdetails.html?id=579940|Reparatur und Erneuerung Abwassernetz- Rahmenvereinbarung 2024-2026>
<https://www.evergabe-online.de/tenderdetails.html?id=579938|Erweiterungsbau Turnhalle Grundschule Tröglitz, Los 7: Metallbau>
<https://www.evergabe-online.de/tenderdetails.html?id=579931|Neubau Feuerwehrhaus Osterwieck 11 Rüttelbodenarbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=579935|Kompaktschlepper mit Frontlader und Anbaugeräten>
<https://www.evergabe-online.de/tenderdetails.html?id=579920|Kreisstraße K2223, Abzweig Weißenborn - Ortseingang Wetterzeube, Straßenbauarbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=579894|Gardelegen - Wallanlage - Wegebeleuchtung - 2.BA, Elektroarbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=579869|Dokumentenscanner inklusive Zubehör>
<https://www.evergabe-online.de/tenderdetails.html?id=579751|Erneuerung Fenster, Wiesestr. 139 und 141-147, 07548 Gera>
<https://www.evergabe-online.de/tenderdetails.html?id=579773|Ingenieurvermessung - Erfassung raumbezogener Daten über Bauwerk und Anlagen>
<https://www.evergabe-online.de/tenderdetails.html?id=579712|Dacharbeiten (1536/23-B-Ö-21)>
<https://www.evergabe-online.de/tenderdetails.html?id=579689|Los 10 - Estricharbeiten; Schloßstraße 10 in 04626 Schmölln, Umnutzung des ehemaligen Schulgebäudes als Verwaltungsgebäude>
<https://www.evergabe-online.de/tenderdetails.html?id=579739|Weiden, Weigelstraße 24, Bodenbelag>
<https://www.evergabe-online.de/tenderdetails.html?id=579723|REZ SW 45ind JC LK Kassel>
<https://www.evergabe-online.de/tenderdetails.html?id=579698|Rohbauarbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=579324|Reinigungsarbeiten in der FH Erfurt>
<https://www.evergabe-online.de/tenderdetails.html?id=579685|Außenanlagen, Errichtung Erdwälle, Stützwände und Munibehälter - TrÜbPl Altmark (Truppenlager Planken), Neubau MAO (NSB 17-24)>
<https://www.evergabe-online.de/tenderdetails.html?id=579661|Tischlerarbeiten nach DIN 18 355 - 3002/2023>
<https://www.evergabe-online.de/tenderdetails.html?id=579609|Blankenhain Infrastrukturmaßnahmen, Sportplatz>
<https://www.evergabe-online.de/tenderdetails.html?id=579613|Seminare des Jahresfortbildungsprogramms>
<https://www.evergabe-online.de/tenderdetails.html?id=579607|REZ SW 45ind JC Landau-Südliche Weinstraße>
<https://www.evergabe-online.de/tenderdetails.html?id=578833|Unterhaltungsbaggerungen 2024>
<https://www.evergabe-online.de/tenderdetails.html?id=579331|Support und Weiterentwicklung des Informations- und Bibliotheksportals des Bundes (ibib)>
<https://www.evergabe-online.de/tenderdetails.html?id=579319|Bundeswehrkrankenhaus Berlin - Sanierung Neubau der Außenanlagen II -
Landschaftsbauarbeiten - Vergabe 421/2023>
<https://www.evergabe-online.de/tenderdetails.html?id=552717|Kauf eines Gaschromatographen mit Massenspektrometer (GC-MS) und XYZ-Roboter>
<https://www.evergabe-online.de/tenderdetails.html?id=579312|KKE 0340.11.02 Malerarbeiten TO3>
<https://www.evergabe-online.de/tenderdetails.html?id=579315|RV Gebäudereinigung Eck und Kiel- NB 670>
<https://www.evergabe-online.de/tenderdetails.html?id=579299|Rahmenvertrag Büromaterial Insel, VZ, FWS>
<https://www.evergabe-online.de/tenderdetails.html?id=579269|GNUE, Martin- Luther- Universität Halle-Wittenberg, Errichtung Sportzentrum (SHL 683-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=579288|Dauerschuldverhältnis Gebäudereinigung Hamburg, Rostock, Breitenburg; Glasreinigung Rostock, Breitenburg>
<https://www.evergabe-online.de/tenderdetails.html?id=579232|Los 3 - Unterhaltsreinigung, Glasreinigung mit Rahmen, Grundreinigung für Regelschule Nöbdenitz; Gebäudeinnenreinigung für Schulen des Landkreises Altenburger Land>
<https://www.evergabe-online.de/tenderdetails.html?id=579226|Los 2 - Unterhaltsreinigung, Glasreinigung mit Rahmen, Grundreinigung für Grundschule Thonhausen; Gebäudeinnenreinigung für Schulen des Landkreises Altenburger Land>
<https://www.evergabe-online.de/tenderdetails.html?id=579222|Los 1 - Unterhaltsreinigung, Glasreinigung mit Rahmen, Grundreinigung für Grundschule Großstechau; Gebäudeinnenreinigung für Schulen des Landkreises Altenburger Land>
<https://www.evergabe-online.de/tenderdetails.html?id=579233|[J4-23V-113] System Sturmgewehr Bundeswehr Unterstützung bei der Integrierten Nachweisführung>
<https://www.evergabe-online.de/tenderdetails.html?id=579128|Projektträger "Innovation und Strukturwandel">
<https://www.evergabe-online.de/tenderdetails.html?id=578970|Werftinstandsetzung BP 61 "Prignitz">
<https://www.evergabe-online.de/tenderdetails.html?id=579183|Neubau Flutpolder Elster-Luppe-Aue - Errichtung von Grundwassermessstellen>
<https://www.evergabe-online.de/tenderdetails.html?id=578796|Gotha, Schloss Friedenstein
TP I, Westflügel, Integration Treppenhaus mit Aufzug
Los 15.1 - Tischler Fenster>
<https://www.evergabe-online.de/tenderdetails.html?id=578948|Micro Focus Renewal>
<https://www.evergabe-online.de/tenderdetails.html?id=579338|Sanierung Stadtbad Zörbig (Freibad) - Los 04 - Ausstattung mit Sprungturm und Breitrutsche>
<https://www.evergabe-online.de/tenderdetails.html?id=579329|Wartungsvertrag der Lüftungstechnischen Anlagen im Radiochemie-Edelgaslabor>
<https://www.evergabe-online.de/tenderdetails.html?id=579323|Briefversand BAMF Rosenheim>
<https://www.evergabe-online.de/tenderdetails.html?id=579220|Vergabe von Dienstleistungen für die DGUV V4 Prüfung an ortsfesten Anlagen in 10318 Berlin, Rheinpfalzallee 82, Bundesanstalt für Immobilienaufgaben, Direktion Berlin - VOEK 127-22>
<https://www.evergabe-online.de/tenderdetails.html?id=579306|Erfurt, Mainzerhofstraße 12, LEG Bürogebäude, Erneuerung GLT Hardware Einzelraumregelung>
<https://www.evergabe-online.de/tenderdetails.html?id=579303|Metallbauarbeiten nach DIN 18 360 - 2542/2023>
<https://www.evergabe-online.de/tenderdetails.html?id=579273|Entsorgung / Verwertung von Kommunalen Klärschlamm>
<https://www.evergabe-online.de/tenderdetails.html?id=579298|Wiepke - Feuerwehrhaus - Neubau, Trockenbau>
<https://www.evergabe-online.de/tenderdetails.html?id=579278|Wiepke - Feuerwehrhaus - Neubau, Fassade>
<https://www.evergabe-online.de/tenderdetails.html?id=578987|Trockenbauarbeiten nach DIN 18 340 - 25/2024>
<https://www.evergabe-online.de/tenderdetails.html?id=579296|GS Großkorbetha - Neubau Verbinder - Los 11 a HLS und Los 11b Wartung>
<https://www.evergabe-online.de/tenderdetails.html?id=579272|Elektro-, Sicherheits- und Informationstechnische Anlagen nach DIN 18382 (1557-23-B-Ö-21)>
<https://www.evergabe-online.de/tenderdetails.html?id=579255|Lauf a.d.Pegnitz, Schützenstraße 50, Metallbau-Türen>
<https://www.evergabe-online.de/tenderdetails.html?id=579231|Neubau Streusalzlager - EBKDS - Stadt Suhl>
<https://www.evergabe-online.de/tenderdetails.html?id=579234|Rahmenvertrag zur Beseitigung von Ölspuren und anderen Verunreinigungen auf Straßen, Wegen und Plätzen im Stadtgebiet der Stadt Zeitz und in ihren Ortsteilen>
<https://www.evergabe-online.de/tenderdetails.html?id=578686|Erfassung von Untersuchungsflächen zum Monitoring der Pfeifengraswiesen (LRT 6410) in Sachsen-Anhalt>
<https://www.evergabe-online.de/tenderdetails.html?id=578886|Depots und Werkstätten der Staatlichen Museen zu Berlin, F05 1.BA - Bilderschiebeanlage - Vergabe 378/2023>
<https://www.evergabe-online.de/tenderdetails.html?id=578977|Adobe All Apps FRL Offline-​Cloud-Lizenzen>
<https://www.evergabe-online.de/tenderdetails.html?id=578731|Monitoring von FFH-Pflanzenarten in Sachsen-Anhalt 2024>
<https://www.evergabe-online.de/tenderdetails.html?id=579095|Hausmeisterdienste Standort Dessau-Roßlau>
<https://www.evergabe-online.de/tenderdetails.html?id=578976|Entwicklung und Produktion eines Luftbeweglichen Waffenträgers (LuWa)>
<https://www.evergabe-online.de/tenderdetails.html?id=578971|Miete Etagendrucker>
<https://www.evergabe-online.de/tenderdetails.html?id=579002|REZ NORD 45ind AA Bad Oldesloe>
<https://www.evergabe-online.de/tenderdetails.html?id=578915|Schülerbeförderung zum Förderzentrum Andreasried Erfurt für die Schuljahre 2024/25 und 2025/26 in 2 Losen>
<https://www.evergabe-online.de/tenderdetails.html?id=579150|Abschluss eines Rahmenvertrages für die Durchführung der Unterhaltsreinigung und Glasreinigung in der Bundeswehrliegenschaft Sportfördergruppe Frankfurt (Oder)>
<https://www.evergabe-online.de/tenderdetails.html?id=578954|Umsetzung des bundesweiten Insektenmonitorings in Sachsen-Anhalt: Modul Tagfalter und Widderchen auf der Landschaftsebene – 2024-2026>
<https://www.evergabe-online.de/tenderdetails.html?id=579116|Grünland- und Anlagenpflegearbeiten am Main-Donau-Kanal im Bereich des ABz Nürnberg 2024 ff>
<https://www.evergabe-online.de/tenderdetails.html?id=578991|Rahmenvereinbarung über den Kauf von Getreide>
<https://www.evergabe-online.de/tenderdetails.html?id=578766|Erfassung von Untersuchungsflächen zum Monitoring der Kalkreichen Sümpfe mit Cla-dium mariscus (LRT 7210) in Sachsen-Anhalt>
<https://www.evergabe-online.de/tenderdetails.html?id=577066|Projektträger "DATIpilot">
<https://www.evergabe-online.de/tenderdetails.html?id=578776|Übersetzung juristischer Fachtexte (Rahmenvereinbarung für Übersetzungen aus dem Rumänischen ins Deutsche)>
<https://www.evergabe-online.de/tenderdetails.html?id=579094|GNUE Erweiterung JVA Halle, 3.TM, Herbert-Post-Straße 8, 06118 Halle (Saale) - (SHL 617-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=579120|Landschaftsgärtnerische Pflegearbeiten im MunLager Aurich und MunLager Gut Husum 6002584837-BwDLZ Leer>
<https://www.evergabe-online.de/tenderdetails.html?id=579218|B 71, ENB Brücke Zichtauer Bäke, Instandsetzung Umleitungsstrecken>
<https://www.evergabe-online.de/tenderdetails.html?id=578959|Prüfung ortsfester elektrischer Anlagen >
<https://www.evergabe-online.de/tenderdetails.html?id=578941|Rahmenvertrag zur Durchführung der Prüfung der nicht ortsfesten (ortsveränderlichen) elektrischen Betriebsmittel an den Laborstandorten des Umweltbundesamtes nach den Unfallverhütungsvorschriften DGUV Vorschrift, VDE 0701/0702:2008 und TRBS 1201 - Los 1: Standorte Berlin; Los 2: Bad Elster; Los 3: Langen>
<https://www.evergabe-online.de/tenderdetails.html?id=573565|Lieferung von Lebensmitteln>
<https://www.evergabe-online.de/tenderdetails.html?id=578938|Videokonferenztechnik>
<https://www.evergabe-online.de/tenderdetails.html?id=579192|Hosting Betrieb und Support Webapps>
<https://www.evergabe-online.de/tenderdetails.html?id=579185|Sanierung Stadtbad Zörbig (Freibad) - Los 02 - Wassertechnik (Freibadbecken: Einbauteile, Rohrleitungen, Pumpen, Armaturen, Steuerung)>
<https://www.evergabe-online.de/tenderdetails.html?id=579179|Graphische Leistungen für die Kulturstiftung Dessau-Wörlitz (Rahmenvertrag)>
<https://www.evergabe-online.de/tenderdetails.html?id=579135|Erfassungen des Heldbocks in ausgewählten Gebieten Sachsen-Anhalts in Vorbereitung eines Artenhilfsprogramms>
<https://www.evergabe-online.de/tenderdetails.html?id=578925|Los 1 - SiGeKo-Leistungen nach Baustellenverordnung>
<https://www.evergabe-online.de/tenderdetails.html?id=579144|Ingenieurtechnische Überprüfung der Reichstagskuppel>
<https://www.evergabe-online.de/tenderdetails.html?id=579124|Konzeptionelle Erarbeitung von Feldhamster-Schwerpunktgebieten in Sachsen-Anhalt als fachliche Grundlage eines Artenhilfsprogramms>
<https://www.evergabe-online.de/tenderdetails.html?id=579134|Wartung/Inspektion von Netzersatzanlagen>
<https://www.evergabe-online.de/tenderdetails.html?id=579126|Stahl- und Metallbauarbeiten Gebäude 37 - TrÜbPl Klietz, TrUkft Kaserne am See, Brandschutztechnische Ertüchtigung Gebäude 36 u. 37 (NSB 14-24)>
<https://www.evergabe-online.de/tenderdetails.html?id=579101|Leasing von Behördenfahrzeugen>
<https://www.evergabe-online.de/tenderdetails.html?id=579102|Gebäudeunterhaltsreinigung im DVL in Ansbach>
<https://www.evergabe-online.de/tenderdetails.html?id=579069|Lieferung, Aufbau und Installation von Ausgabeküchen, Los 1 und 2>
<https://www.evergabe-online.de/tenderdetails.html?id=579070|Herstellung und Lieferung von 25 Stück Kamerakippmasten>
<https://www.evergabe-online.de/tenderdetails.html?id=577086|Anschaffung Tragkraftspritzenfahrzeug-Wasser (TSF-W) nach DIN 14530-17:2019-11 für die Feuerwehr>
<https://www.evergabe-online.de/tenderdetails.html?id=578518|Umlageerhebung der Verbandsbeiträge zur Gewässerunterhaltung>
<https://www.evergabe-online.de/tenderdetails.html?id=579040|Gemeinschaftsbaumaßnahme Ausbau Weinbergstraße Weißenfels - Los 1 Verkehrsanlagen, Los 2 Kanalbau, Los 3 Erdarbeiten Medienverlegung>
<https://www.evergabe-online.de/tenderdetails.html?id=579047|Rollladenarbeiten, Sonnenschutz, Vorhänge etc. nach DIN 18 358, 18 299 - 2545/2023>
<https://www.evergabe-online.de/tenderdetails.html?id=579039|Lieferung Harnstofflösung (April - September 2024)>
<https://www.evergabe-online.de/tenderdetails.html?id=579032|1/DLII4/OV010 - 1 EA Elektro-Scherenarbeitsbühne, selbstfahrend>
<https://www.evergabe-online.de/tenderdetails.html?id=579034|Überlassung der Software Autodesk AutoCAD>
<https://www.evergabe-online.de/tenderdetails.html?id=579027|1/DLII4/OV008 - 1 EA Formatkreissäge>
<https://www.evergabe-online.de/tenderdetails.html?id=579028|REZ SW 45ind JC LK Reutlingen>
<https://www.evergabe-online.de/tenderdetails.html?id=578809|REZ NORD 45ind JC Holzminden>
<https://www.evergabe-online.de/tenderdetails.html?id=578889|Lieferung und betriebsbereite Aufstellung eines GC-MS/MS-Massenspektrometriesystems>
<https://www.evergabe-online.de/tenderdetails.html?id=578832|REZ NRW 45ind JC Oberhausen>
<https://www.evergabe-online.de/tenderdetails.html?id=578804|Glas- und Rahmenreinigung RIM Dortmund>
<https://www.evergabe-online.de/tenderdetails.html?id=578805|Lieferung von Forstmarkierfarbe und Transportbehälter für Farbspraydosen für Bundesforstbetriebe der Bundesanstalt für Immobilienaufgaben (Vergabenummer VOEK 552-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=577448|Komplettsanierung Pestalozzischule Zeitz - Los 5 - Baumeisterarbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=578862|Depot und Werkstätten Berlin-Friedrichshagen - 1338/2022>
<https://www.evergabe-online.de/tenderdetails.html?id=578878|REZ NRW 45ind JC Oberhausen>
<https://www.evergabe-online.de/tenderdetails.html?id=578717|Administrationssystem für Akademische Prüfstellen>
<https://www.evergabe-online.de/tenderdetails.html?id=578808|REZ NORD 45ind JC Wolfenbüttel>
<https://www.evergabe-online.de/tenderdetails.html?id=578820|REZ SW UB AA Mainz>
<https://www.evergabe-online.de/tenderdetails.html?id=577045|Deponie Nißma
Errichtung Oberflächenabdichtung Deponieabschnitt B2 - Planungsleistungen für Objektplanung Ingenieurbauwerke (HOAI § 43) LPH 5-9>
<https://www.evergabe-online.de/tenderdetails.html?id=578842|REZ NRW 45ind JC Oberhausen>
<https://www.evergabe-online.de/tenderdetails.html?id=578893|GNUE MLU Halle, Sanierung Chemie BT B und D, Kurt-Mothes-Str. 2, 06120 Halle-Wittenberg (SHL 679-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=579022|Durchführen der Jahresabschlussprüfungen für das Geschäftsjahr 2024 sowie optional für die folgenden Geschäftsjahre 2025 bis 2029>
<https://www.evergabe-online.de/tenderdetails.html?id=579020|1/DLII4/OV011 - 1 EA Kipp-Anhänger 13,1 bis 18,0 to>
<https://www.evergabe-online.de/tenderdetails.html?id=578630|Obstbaumnachpflanzung und anschließende Pflege>
<https://www.evergabe-online.de/tenderdetails.html?id=579008|Raumlufttechnische Anlagen nach DIN 18379 (1617-23-B-Ö-21)>
<https://www.evergabe-online.de/tenderdetails.html?id=569314|Beschaffung eines Wartungsvertrags für das Mailgateway>
<https://www.evergabe-online.de/tenderdetails.html?id=578821|Wildkrautbekämpfung WSK 2024 ABz05>
<https://www.evergabe-online.de/tenderdetails.html?id=578981|Metallbauarbeiten nach DIN 18 360 - 2947/2023>
<https://www.evergabe-online.de/tenderdetails.html?id=578979|Lieferung eines Kleintraktors mit Schneeschiebschild, Schleuderstreuer und Wartung>
<https://www.evergabe-online.de/tenderdetails.html?id=578973|REZ NORD BuKSelb JC Bremen>
<https://www.evergabe-online.de/tenderdetails.html?id=578733|1/DLII4/OV009 - 2 EA Schlegelmäher, 4,51 bis 6,0 m>
<https://www.evergabe-online.de/tenderdetails.html?id=578916|Starkstrom-, Fernmelde- und Informationstechnische Anlagen - TrÜbPl Altmark (Truppenlager Planken), Bau MAO im TrLg Planken (NSB 10-24)>
<https://www.evergabe-online.de/tenderdetails.html?id=578963|Erneuerung der Mischwasserleitungen und Trinkwasserleitungen einschl. der Hausanschlüsse in der Lehmkuhle Havelberg>
<https://www.evergabe-online.de/tenderdetails.html?id=578947|Neubau und Instandsetzung eines Deponiezauns - ehem. Schadstoffdeponie Laucha>
<https://www.evergabe-online.de/tenderdetails.html?id=578937|Machbarkeitsstudie und Umsetzung Ausweitung Desksharing>
<https://www.evergabe-online.de/tenderdetails.html?id=578940|Haus 13- Umbau der Räume 2.25,2.26 und -1.24 - TGA- Planung>
<https://www.evergabe-online.de/tenderdetails.html?id=578795|Vergabe einer Dienstleistungskonzession für den Kantinenbetrieb für die Zentrale des BALM>
<https://www.evergabe-online.de/tenderdetails.html?id=578921|REZ SW 45ind - Jobcenter Breisgau-Hochschwarzwald>
<https://www.evergabe-online.de/tenderdetails.html?id=569275|Umbau Kegelbahn Osterfeld, Los 9: Elektroinstallation>
<https://www.evergabe-online.de/tenderdetails.html?id=578639|Herstellung Zuwegung zum Gebäude>
<https://www.evergabe-online.de/tenderdetails.html?id=578897|Ersatzkomponenten für den Dolmetsch-Hub des Deutschen Bundestages>
<https://www.evergabe-online.de/tenderdetails.html?id=578852|Beratungs- und Support-Dienstleistungen für IT- Infrastruktur>
<https://www.evergabe-online.de/tenderdetails.html?id=578892|REZ NRW FbW JC Dortmund>
<https://www.evergabe-online.de/tenderdetails.html?id=578885|Bauwerksprüfung Schiebetore II, III, V und VI>
<https://www.evergabe-online.de/tenderdetails.html?id=569360|Umbau Kegelbahn Osterfeld, Los 8: HLS>
<https://www.evergabe-online.de/tenderdetails.html?id=578864|Digitalpakt strukturierte Verkabelung BbS Geschwister Scholl in 38820 Halberstadt, GYM Gerhart Hauptmann in 38855 Wernigerode und Petri-Sekundarschule in 39397 Schwanebeck>
<https://www.evergabe-online.de/tenderdetails.html?id=578857|Bau Digitalpakt strukturierte Verkabelung an diversen Schulen im Landkreis Harz>
<https://www.evergabe-online.de/tenderdetails.html?id=578855|Rahmenvertrag Müllentsorgung>
<https://www.evergabe-online.de/tenderdetails.html?id=578858|Planmäßige Instandsetzung Ölschute Klasse 737 Ö13>
<https://www.evergabe-online.de/tenderdetails.html?id=578853|Kuvertiermaschine>
<https://www.evergabe-online.de/tenderdetails.html?id=578845|Kauf von Gerätetechnik für die Thüringer Polizei>
<https://www.evergabe-online.de/tenderdetails.html?id=578732|Ausschreibung von Beratungsleistungen zur Vorbereitung und Erstellung eines Lastenheftes>
<https://www.evergabe-online.de/tenderdetails.html?id=578718|Rahmenvertrag externe Unterstützung für Fachverfahren MAPZ>
<https://www.evergabe-online.de/tenderdetails.html?id=577105|Rahmenvertrag über Zustelldienstleistungen / Paketversand für die Thüringer Staatslotterie AöR>
<https://www.evergabe-online.de/tenderdetails.html?id=578596|Glas- und Rahmenreinigung RIM München>
<https://www.evergabe-online.de/tenderdetails.html?id=578652|REZ NRW 16k - JC ME-aktiv>
<https://www.evergabe-online.de/tenderdetails.html?id=578605|Glas- und Rahmenreinigung RIM Hannover>
<https://www.evergabe-online.de/tenderdetails.html?id=578613|Glas- und Rahmenreinigung RIM Berlin>
<https://www.evergabe-online.de/tenderdetails.html?id=578616|Büroverbrauchsmaterial_2024_2028 Ordnen und Archivieren>
<https://www.evergabe-online.de/tenderdetails.html?id=576988|3816W4-255.03/0001/007 Ersatz Mobilbagger auf SG 2796 ABz Kummersdorf>
<https://www.evergabe-online.de/tenderdetails.html?id=578595|Glas- und Rahmenreinigung RIM Mainz>
<https://www.evergabe-online.de/tenderdetails.html?id=578610|Glas- und Rahmenreinigung RIM Kiel>
<https://www.evergabe-online.de/tenderdetails.html?id=578590|Kurierdienstleistungen IS Essen>
<https://www.evergabe-online.de/tenderdetails.html?id=578607|Glas- und Rahmenreinigung RIM VZ>
<https://www.evergabe-online.de/tenderdetails.html?id=578600|Glas- und Fensterreinigung RIM Stuttgart>
<https://www.evergabe-online.de/tenderdetails.html?id=578770|REZ Bayern_45Unt3mV_AA Freising>
<https://www.evergabe-online.de/tenderdetails.html?id=578735|REZ NRW 45Akt3mV - AA Bochum>
<https://www.evergabe-online.de/tenderdetails.html?id=578598|Glas- und Rahmenreinigung RIM Chemnitz>
<https://www.evergabe-online.de/tenderdetails.html?id=578633|REZ SW 45ind JC Vorderpfalz>
<https://www.evergabe-online.de/tenderdetails.html?id=576423|Systemintegrator Medientechnik Dauerausstellung>
<https://www.evergabe-online.de/tenderdetails.html?id=578608|Glas- und Rahmenreinigung RIM Karlsruhe>
<https://www.evergabe-online.de/tenderdetails.html?id=578618|1/DLII4/OV013 - Teleskoplader über 3,7 to Hubkraft>
<https://www.evergabe-online.de/tenderdetails.html?id=578612|Glas- und Rahmenreinigung RIM Magdeburg>
<https://www.evergabe-online.de/tenderdetails.html?id=578597|Glas- und Rahmenreinigung RIM Potsdam>
<https://www.evergabe-online.de/tenderdetails.html?id=578611|Glas- und Rahmenreinigung RIM Köln>
<https://www.evergabe-online.de/tenderdetails.html?id=578729|EM 52 Hochwassersicherung Hauptgebäude und Nebengebäude ZEKIWA (BA 1.2), Geschwister-Scholl-Straße 16 in 06712 Zeitz, Los 60 - Hochwassersanierung BA 1.2>
<https://www.evergabe-online.de/tenderdetails.html?id=578651|Baumaßnahme: Julius-Kühn-Institut, Haus C, Technische Ausrüstung E-Technik
Leistungsbild: Technische Ausrüstung nach HOAI § 53 ff., AG 4, 5, HZ II, LPH 3-9, Besondere Leistungen>
<https://www.evergabe-online.de/tenderdetails.html?id=578570|Lieferung einer Großraumkehrmaschine 15 t>
<https://www.evergabe-online.de/tenderdetails.html?id=578604|Glas- und Rahmenreinigung RIM Nürnberg>
<https://www.evergabe-online.de/tenderdetails.html?id=578594|Glas- und Rahmenreinigung RIM Bremen>
<https://www.evergabe-online.de/tenderdetails.html?id=578602|Glas- und Rahmenreinigung RIM Düsseldorf>
<https://www.evergabe-online.de/tenderdetails.html?id=578588|Bundeswehrkrankenhaus Berlin - Neubau Apotheke mit Zentrallager -
Pharmaterrazzoarbeiten - Vergabe 1810/2022>
<https://www.evergabe-online.de/tenderdetails.html?id=578599|Glas- und Rahmenreinigung RIM Rostock>
<https://www.evergabe-online.de/tenderdetails.html?id=578662|1/DLII4/OV005 -Hubsteiger>
<https://www.evergabe-online.de/tenderdetails.html?id=578628|1/DLII4/OV012 - 2 EA Buschholzhacker Fremdantrieb ab 63 kW>
<https://www.evergabe-online.de/tenderdetails.html?id=578460|1/DLII4/OV004 - Kesselreinigungsgerät>
<https://www.evergabe-online.de/tenderdetails.html?id=578817|Reinigung Schleuse Rothensee 2024, Außenbezirk Niegripp>
<https://www.evergabe-online.de/tenderdetails.html?id=578649|Neubau Schulsporthalle, Grundschule 3 - Rohbauarbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=578797|Support-Dienstleistungen Palo Alto Umgebung>
<https://www.evergabe-online.de/tenderdetails.html?id=578790|Validierung Autoklaven>
<https://www.evergabe-online.de/tenderdetails.html?id=578589|Arbeitnehmerüberlassung für Geschäftszimmer ITZBund Dienstsitz Düsseldorf>
<https://www.evergabe-online.de/tenderdetails.html?id=575933|Sporthalle Seyda, Los 01: Abbrucharbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=578740|Rahmenvertrag Textilrestaurierung>
<https://www.evergabe-online.de/tenderdetails.html?id=578775|Instandsetzung der westlichen Grundlaufdecke der Schleuse Kriegenbrunn>
<https://www.evergabe-online.de/tenderdetails.html?id=578774|Landesbildungszentrum für Hörgeschädigte, Maßnahmen im Bauunterhalt, Wohnheim und Sozialtrakt - Ertüchtigung der BMA Wohnheim und Sozialtrakt (SHL 676-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578751|KKE 3230 Schließanlage - Beschlagarbeiten nach DIN 18 357 - 1583/2023>
<https://www.evergabe-online.de/tenderdetails.html?id=578606|Erneuerung einer Außentür an der Mehrzweckhalle des Bundessortenamtes (Vergabenummer VOEK 346-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578746|Trockenbau - Amtsgericht Oschersleben, Gartenstraße 1 (NML 671-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578739|Gerüstarbeiten nach DIN 18 451 - BT C - 2826/2023>
<https://www.evergabe-online.de/tenderdetails.html?id=578572|Briefwahlunterlagen - Druck & Versand>
<https://www.evergabe-online.de/tenderdetails.html?id=578727|DVD-Edition zum Buchprojekt „Propaganda durch Erfolgsfilme“ (Autor: Rainer Rother)>
<https://www.evergabe-online.de/tenderdetails.html?id=578720|REZ SW 45Unt3 AA Darmstadt>
<https://www.evergabe-online.de/tenderdetails.html?id=577638|Winterdienstleistungen für13 Bundesliegenschaften in Nordrhein-Westfalen, Bundesanstalt für Immobilienaufgaben, Direktion Dortmund (Vergabenummer VOEK 103-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578690|Elektroinstallationen - Amtsgericht Oschersleben, Gartenstraße 1 (NML 06-24)>
<https://www.evergabe-online.de/tenderdetails.html?id=578700|Glas- und Fassadenreinigung im FLI Greifswald-Insel Riems>
<https://www.evergabe-online.de/tenderdetails.html?id=578692|Metallbau- und Stahlbauarbeiten nach DIN 18 360, 18 335 - VE 26 Regalanlagen - 316/2023>
<https://www.evergabe-online.de/tenderdetails.html?id=578458|Instandsetzung Himmelstadt Wehr M>
<https://www.evergabe-online.de/tenderdetails.html?id=578677|Bohr-, Schneid- und Putzarbeiten (1592-23-B-Ö-21)>
<https://www.evergabe-online.de/tenderdetails.html?id=578679|Landschaftsbau- u. Verkehrswegebauarb. - Pflasterdecken, Plattenbeläge, Einfassungen DIN 18 318 - 2574/2023>
<https://www.evergabe-online.de/tenderdetails.html?id=578678|KKE 006: Fliesenarbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=578674|Revierkommissariat Sangerhausen, Abbruch alte Hundezwingeranlage - Abbrucharbeiten (SHL 664-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578671|KKE 3260 Bauendreinigung nach DIN 18 299 - 2397/2023>
<https://www.evergabe-online.de/tenderdetails.html?id=578660|Lieferung von Mülleimerbeuteln, Abfallsäcken, Hygienepapieren; Schulen im Landkreis Altenburger Land>
<https://www.evergabe-online.de/tenderdetails.html?id=578653|Lieferung und Aufstellung Container - Polizeiinspektion Stendal, Errichtung von Umkleideräumen in Containerbauweise als Interimslösung (NSL 678-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578528|Rahmenvereinbarung über die Pflege und Weiterentwicklung der Webangebote des Bundesarchivs>
<https://www.evergabe-online.de/tenderdetails.html?id=578484|Sanierung des Altarchivs für das Geheime Staatsarchiv (GStA)
Leistungsbild: Fachplanung der Technischen Ausrüstung gem. § 53 ff HOAI, Anl.-Gr. 1 bis 3, 7 und 8, LPH 2 - 9 Grundleistungen sowie bes. Leistungen>
<https://www.evergabe-online.de/tenderdetails.html?id=578481|REZ NRW 45ind Jobcenter Rhein-Erft>
<https://www.evergabe-online.de/tenderdetails.html?id=578554|1/DLII4/OV007 - 1 EA Allradschlepper 60 kmh ab 148 kw>
<https://www.evergabe-online.de/tenderdetails.html?id=578530|Software Confluent >
<https://www.evergabe-online.de/tenderdetails.html?id=570163|Arbeitsmedizinische Vorsorge>
<https://www.evergabe-online.de/tenderdetails.html?id=578563|Tiefbauarbeiten Trafostation>
<https://www.evergabe-online.de/tenderdetails.html?id=570271|Schloss Sondershausen - Los 04 Elektroinstallation>
<https://www.evergabe-online.de/tenderdetails.html?id=578502|Kanal- und Straßenbauarbeiten>
<https://www.evergabe-online.de/tenderdetails.html?id=578640|1/DLII4/OV003 - 4 EA gärtnerischer Vierradschlepper>
<https://www.evergabe-online.de/tenderdetails.html?id=578637|KNUE - Landerechnungshof Sachsen-Anhalt, Anbau einer Aufzugsanlage am Flügel A - Rohbauarbeiten Anbau Aufzugsschacht (SDL 667-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578638|REZ NORD 45BM AA Emden-Leer>
<https://www.evergabe-online.de/tenderdetails.html?id=578634|Sanierungsarbeiten an schadstoffhaltigen Bauteilen nach 18 299 - 2681/2023>
<https://www.evergabe-online.de/tenderdetails.html?id=563292|Blitzschutz>
<https://www.evergabe-online.de/tenderdetails.html?id=577375|Lieferung von ThinClients und Arbeitsplatztechnik für die Kreisverwaltung Saalekreis>
<https://www.evergabe-online.de/tenderdetails.html?id=578619|REZ Nord 45ind JC Cuxhaven>
<https://www.evergabe-online.de/tenderdetails.html?id=578617|REZ NORD GK JC Helmstedt>
<https://www.evergabe-online.de/tenderdetails.html?id=578615|SiGeKo - Planungs- und Ausführungsleistung Sanierung Richtfunkturm und Baumaßnahme Verkehrszentrale sowie Haupteingang und Radarbetriebsgebäude>
<https://www.evergabe-online.de/tenderdetails.html?id=578614|B 85 OU Saalfeld Abzweig B 281; Straßenbau, Erneuerung Tiefeinbau Decke>
<https://www.evergabe-online.de/tenderdetails.html?id=578603|6002587305-BAPersBw I 3.5.2.3>
<https://www.evergabe-online.de/tenderdetails.html?id=578559|BU - BLSA TB Halle, Sanierung der BMA und der EMA (SHL 675-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578576|Außenanlagen - Neubau Polizeiärztliches Zentrum (PÄZ), An der Fliederwegkaserne 23, 06130 Halle/S. (SHL 674-23)>

+ 0
- 0
roomhistories/65817954ebb39dd248d4454a.txt View File


+ 27
- 0
roomhistories/658184ecebb39dd248d44a18.txt View File

@ -0,0 +1,27 @@
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1LGQ70J2/de/overview?5|81303446 - Revision of a Technical Guideline on SGBV Clinical Management and Delivery of Training>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L5Z9EWC/de/overview?20|81303093-Event monitoring and mentoring for facilitating networking in the pharmaceutical and biotechnological sector>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19J9T32X/de/overview?33|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195H3PLS/de/overview?37|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19S77QHN/de/overview?38|81301730 - GET.invest Matchmaking Services in Support of Private Sector Mobilisation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19F1G5SG/de/overview?49|81302642 - Facilitating change of enhanced Knowledge Management in the IKI>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10CJPXWA/de/overview?54|81300477-Design, Construction and Commissioning of Sludge Management Facility in Za'atari Refugee Camp>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19AHFZFX/de/overview?55|81302409-Developing a Study Tour Program for Dispatch Centers (Italy)>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y103BMZCP/de/overview?61|81301769-Transition to a circular economy in the municipal waste management sector in Albania>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CNQ9UHG/de/overview?64|Capacity Building of public Sector stakeholders adopting Living Lab methodology contextualized for urban mobility">
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?68|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CFK2PXS/de/overview?72|81296181-Pilot Implementation of Demand Response in the Indian Electricity Distribution System>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY14RZV37Z/de/overview?74|7200074952 - Framework Agreement for the Supply of Electric- & Plug-In-Hybrid Vehicles>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1E81QD4U/de/overview?79|81289758-Enhancing Water Resource Management (WAMA) - Consultancy Services in Supervision of WWTPs and Capacity Development - Lebanon>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQEEDRE/de/overview?82|81295354-Framework Agreement: ProMOVIS - Short Term Expert Support on Sustainable and Inclusive Mobility in Colombia>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1B2Q5F30/de/overview?99|81296314 - Promotion of the competitiveness of the private sector in Togo - ProComp>
<https://www.eubuero.de/de/nks-erc-proof-of-concept-2452.html|ERC Proof of Concept>
<https://www.bmbf.de/bmbf/shareddocs/bekanntmachungen/de/2023/10/2023-10-10-Bekanntmachung-Australien.html|Projektbezogene Mobilität zum Thema Grüner Wasserstoff mit Australien>
<https://www.bundesanzeiger.de/pub/publication/l5snuRMY9FBb8Ct53Be/content/l5snuRMY9FBb8Ct53Be/BAnz%20AT%2026.07.2023%20B2.pdf|Förderrichtlinie Elektromobilität>
<https://www.klimaschutz.de/de/foerderung/foerderprogramme/investive-kommunale-klimaschutz-modellprojekte|Förderaufruf investive Kommunale Klimaschutz-Modellprojekte>
<https://www.bmbf.de/bmbf/shareddocs/bekanntmachungen/de/2021/10/2021-10-18-Bekanntmachung-Bridge2ERA2021.html|Integration der Region Mittelost- und Südosteuropa in den Europäischen Forschungsraum (Bridge2ERA2021)>
<https://www.bmbf.de/foerderungen/bekanntmachung-3490.html|Internationale Projekte zum Thema grüner Wasserstoff>
<https://www.bmwi.de/Redaktion/DE/Downloads/F/foerderrichtlinie-elektromobilitaet.pdf?__blob=publicationFile&v=4|Förderung von Forschung und Entwicklung im Bereich der Elektromobilität>
<https://www.klimaschutz-industrie.de/foerderung/|Dekarbonisierung der Industrie>
<https://www.ptj.de/projektfoerderung/anwendungsorientierte-grundlagenforschung-energie/ideenwettbewerb-gruener-wasserstoff|7. Energieforschungsprogramm: Ideenwettbewerb Grüner Wasserstoff (BMBF)>
<https://www.innovationsfoerderung-hessen.de/logistik-und-mobilitaet|Innovationen für Logistik und Mobilität>
<https://www.innovationsfoerderung-hessen.de/elektromobilitaet|Elektromobilität>

+ 27
- 0
roomhistories/658185e4ebb39dd248d44aad.txt View File

@ -0,0 +1,27 @@
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1LGQ70J2/de/overview?5|81303446 - Revision of a Technical Guideline on SGBV Clinical Management and Delivery of Training>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L5Z9EWC/de/overview?20|81303093-Event monitoring and mentoring for facilitating networking in the pharmaceutical and biotechnological sector>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19J9T32X/de/overview?33|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195H3PLS/de/overview?37|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19S77QHN/de/overview?38|81301730 - GET.invest Matchmaking Services in Support of Private Sector Mobilisation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19F1G5SG/de/overview?49|81302642 - Facilitating change of enhanced Knowledge Management in the IKI>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10CJPXWA/de/overview?54|81300477-Design, Construction and Commissioning of Sludge Management Facility in Za'atari Refugee Camp>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19AHFZFX/de/overview?55|81302409-Developing a Study Tour Program for Dispatch Centers (Italy)>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y103BMZCP/de/overview?61|81301769-Transition to a circular economy in the municipal waste management sector in Albania>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CNQ9UHG/de/overview?64|Capacity Building of public Sector stakeholders adopting Living Lab methodology contextualized for urban mobility">
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?68|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CFK2PXS/de/overview?72|81296181-Pilot Implementation of Demand Response in the Indian Electricity Distribution System>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY14RZV37Z/de/overview?74|7200074952 - Framework Agreement for the Supply of Electric- & Plug-In-Hybrid Vehicles>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1E81QD4U/de/overview?79|81289758-Enhancing Water Resource Management (WAMA) - Consultancy Services in Supervision of WWTPs and Capacity Development - Lebanon>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQEEDRE/de/overview?82|81295354-Framework Agreement: ProMOVIS - Short Term Expert Support on Sustainable and Inclusive Mobility in Colombia>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1B2Q5F30/de/overview?99|81296314 - Promotion of the competitiveness of the private sector in Togo - ProComp>
<https://www.eubuero.de/de/nks-erc-proof-of-concept-2452.html|ERC Proof of Concept>
<https://www.bmbf.de/bmbf/shareddocs/bekanntmachungen/de/2023/10/2023-10-10-Bekanntmachung-Australien.html|Projektbezogene Mobilität zum Thema Grüner Wasserstoff mit Australien>
<https://www.bundesanzeiger.de/pub/publication/l5snuRMY9FBb8Ct53Be/content/l5snuRMY9FBb8Ct53Be/BAnz%20AT%2026.07.2023%20B2.pdf|Förderrichtlinie Elektromobilität>
<https://www.klimaschutz.de/de/foerderung/foerderprogramme/investive-kommunale-klimaschutz-modellprojekte|Förderaufruf investive Kommunale Klimaschutz-Modellprojekte>
<https://www.bmbf.de/bmbf/shareddocs/bekanntmachungen/de/2021/10/2021-10-18-Bekanntmachung-Bridge2ERA2021.html|Integration der Region Mittelost- und Südosteuropa in den Europäischen Forschungsraum (Bridge2ERA2021)>
<https://www.bmbf.de/foerderungen/bekanntmachung-3490.html|Internationale Projekte zum Thema grüner Wasserstoff>
<https://www.bmwi.de/Redaktion/DE/Downloads/F/foerderrichtlinie-elektromobilitaet.pdf?__blob=publicationFile&v=4|Förderung von Forschung und Entwicklung im Bereich der Elektromobilität>
<https://www.klimaschutz-industrie.de/foerderung/|Dekarbonisierung der Industrie>
<https://www.ptj.de/projektfoerderung/anwendungsorientierte-grundlagenforschung-energie/ideenwettbewerb-gruener-wasserstoff|7. Energieforschungsprogramm: Ideenwettbewerb Grüner Wasserstoff (BMBF)>
<https://www.innovationsfoerderung-hessen.de/logistik-und-mobilitaet|Innovationen für Logistik und Mobilität>
<https://www.innovationsfoerderung-hessen.de/elektromobilitaet|Elektromobilität>

+ 387
- 0
roomhistories/65818946ebb39dd248d44c69.txt View File

@ -0,0 +1,387 @@
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1LGQ70J2/de/overview?5|81303446 - Revision of a Technical Guideline on SGBV Clinical Management and Delivery of Training>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L5Z9EWC/de/overview?20|81303093-Event monitoring and mentoring for facilitating networking in the pharmaceutical and biotechnological sector>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19J9T32X/de/overview?33|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195H3PLS/de/overview?37|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19S77QHN/de/overview?38|81301730 - GET.invest Matchmaking Services in Support of Private Sector Mobilisation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19F1G5SG/de/overview?49|81302642 - Facilitating change of enhanced Knowledge Management in the IKI>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10CJPXWA/de/overview?54|81300477-Design, Construction and Commissioning of Sludge Management Facility in Za'atari Refugee Camp>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19AHFZFX/de/overview?55|81302409-Developing a Study Tour Program for Dispatch Centers (Italy)>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y103BMZCP/de/overview?61|81301769-Transition to a circular economy in the municipal waste management sector in Albania>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CNQ9UHG/de/overview?64|Capacity Building of public Sector stakeholders adopting Living Lab methodology contextualized for urban mobility">
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?68|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CFK2PXS/de/overview?72|81296181-Pilot Implementation of Demand Response in the Indian Electricity Distribution System>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY14RZV37Z/de/overview?74|7200074952 - Framework Agreement for the Supply of Electric- & Plug-In-Hybrid Vehicles>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1E81QD4U/de/overview?79|81289758-Enhancing Water Resource Management (WAMA) - Consultancy Services in Supervision of WWTPs and Capacity Development - Lebanon>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQEEDRE/de/overview?82|81295354-Framework Agreement: ProMOVIS - Short Term Expert Support on Sustainable and Inclusive Mobility in Colombia>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1B2Q5F30/de/overview?99|81296314 - Promotion of the competitiveness of the private sector in Togo - ProComp>
<https://www.eubuero.de/de/nks-erc-proof-of-concept-2452.html|ERC Proof of Concept>
<https://www.bmbf.de/bmbf/shareddocs/bekanntmachungen/de/2023/10/2023-10-10-Bekanntmachung-Australien.html|Projektbezogene Mobilität zum Thema Grüner Wasserstoff mit Australien>
<https://www.bundesanzeiger.de/pub/publication/l5snuRMY9FBb8Ct53Be/content/l5snuRMY9FBb8Ct53Be/BAnz%20AT%2026.07.2023%20B2.pdf|Förderrichtlinie Elektromobilität>
<https://www.klimaschutz.de/de/foerderung/foerderprogramme/investive-kommunale-klimaschutz-modellprojekte|Förderaufruf investive Kommunale Klimaschutz-Modellprojekte>
<https://www.bmbf.de/bmbf/shareddocs/bekanntmachungen/de/2021/10/2021-10-18-Bekanntmachung-Bridge2ERA2021.html|Integration der Region Mittelost- und Südosteuropa in den Europäischen Forschungsraum (Bridge2ERA2021)>
<https://www.bmbf.de/foerderungen/bekanntmachung-3490.html|Internationale Projekte zum Thema grüner Wasserstoff>
<https://www.bmwi.de/Redaktion/DE/Downloads/F/foerderrichtlinie-elektromobilitaet.pdf?__blob=publicationFile&v=4|Förderung von Forschung und Entwicklung im Bereich der Elektromobilität>
<https://www.klimaschutz-industrie.de/foerderung/|Dekarbonisierung der Industrie>
<https://www.ptj.de/projektfoerderung/anwendungsorientierte-grundlagenforschung-energie/ideenwettbewerb-gruener-wasserstoff|7. Energieforschungsprogramm: Ideenwettbewerb Grüner Wasserstoff (BMBF)>
<https://www.innovationsfoerderung-hessen.de/logistik-und-mobilitaet|Innovationen für Logistik und Mobilität>
<https://www.innovationsfoerderung-hessen.de/elektromobilitaet|Elektromobilität>
<https://www.evergabe-online.de//./tenderdetails.html?id=568482|Methodenbedarf: Training Area Management System (PA922)>
<https://www.evergabe-online.de//./tenderdetails.html?id=556582|REZ BBSAT 45ind Integration durch Praxis U25 - AA Cottbus>
<https://www.evergabe-online.de//./tenderdetails.html?id=552736|Entwicklung eines Echtzeitsensors für die Bestimmung der Reinheit von Wasserstoff vor Ort>
<https://www.evergabe-online.de//./tenderdetails.html?id=546164|Vergabe von AHO-Leistungen „Facility Management Consulting“ für den Neubau für ministerielle Nutzung sowie ein Wohnungsbau mit gewerblicher Nutzung auf dem Postblockareal-Süd, Berlin-Mitte, Bundesanstalt für Immobilienaufgaben, Direktion Berlin>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FLG7NZX/de/overview?7|81303158-Consultancy for hazardous waste management in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?17|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FD2L0CV/de/overview?21|81303597-Expert Study on blended financing and debt for Health>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYYC41G/de/overview?24|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1LGQ70J2/de/overview?32|81303446 - Revision of a Technical Guideline on SGBV Clinical Management and Delivery of Training>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L5Z9EWC/de/overview?43|81303093-Event monitoring and mentoring for facilitating networking in the pharmaceutical and biotechnological sector>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19J9T32X/de/overview?56|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19S77QHN/de/overview?58|81301730 - GET.invest Matchmaking Services in Support of Private Sector Mobilisation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195H3PLS/de/overview?59|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://www.evergabe-online.de//./tenderdetails.html?id=568238|Software für das Travel Management des Bundes>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?0|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FLG7NZX/de/overview?12|81303158-Consultancy for hazardous waste management in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?22|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FD2L0CV/de/overview?26|81303597-Expert Study on blended financing and debt for Health>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYYC41G/de/overview?29|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1LGQ70J2/de/overview?36|81303446 - Revision of a Technical Guideline on SGBV Clinical Management and Delivery of Training>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19J9T32X/de/overview?58|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19S77QHN/de/overview?60|81301730 - GET.invest Matchmaking Services in Support of Private Sector Mobilisation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195H3PLS/de/overview?61|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?70|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CFK2PXS/de/overview?74|81296181-Pilot Implementation of Demand Response in the Indian Electricity Distribution System>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY14RZV37Z/de/overview?76|7200074952 - Framework Agreement for the Supply of Electric- & Plug-In-Hybrid Vehicles>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1E81QD4U/de/overview?81|81289758-Enhancing Water Resource Management (WAMA) - Consultancy Services in Supervision of WWTPs and Capacity Development - Lebanon>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1EQEEDRE/de/overview?84|81295354-Framework Agreement: ProMOVIS - Short Term Expert Support on Sustainable and Inclusive Mobility in Colombia>
<https://www.evergabe-online.de/tenderdetails.html?id=568238|Software für das Travel Management des Bundes>
<https://www.evergabe-online.de/tenderdetails.html?id=568482|Methodenbedarf: Training Area Management System (PA922)>
<https://www.evergabe-online.de/tenderdetails.html?id=556582|REZ BBSAT 45ind Integration durch Praxis U25 - AA Cottbus>
<https://www.evergabe-online.de/tenderdetails.html?id=552736|Entwicklung eines Echtzeitsensors für die Bestimmung der Reinheit von Wasserstoff vor Ort>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FLZ6JLE/de/overview?0|81303882 - Support to IDDA in enhancement of existing digital wallet technologies and digital document management in Azerbaijan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y103NGX83/de/overview?3|81303242-Feasibility study for Biogas production-Bangladesh>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK0GJJK/de/overview?4|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1CAT9X8C/de/overview?16|81303158-Consultancy for hazardous waste management in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F68LATM/de/overview?29|81303597-Expert Study on blended financing and debt for Health>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FD2L0CV/de/overview?31|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?33|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7NZGC4/de/overview?40|81303446 - Revision of a Technical Guideline on SGBV Clinical Management and Delivery of Training>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1CHU0P2E/de/overview?57|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19J9T32X/de/overview?59|81301730 - GET.invest Matchmaking Services in Support of Private Sector Mobilisation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195CV0A2/de/overview?60|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CV0XTS6/de/overview?69|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CSFYFKV/de/overview?73|81296181-Pilot Implementation of Demand Response in the Indian Electricity Distribution System>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CFK2PXS/de/overview?75|7200074952 - Framework Agreement for the Supply of Electric- & Plug-In-Hybrid Vehicles>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1ETUCVNE/de/overview?80|81289758-Enhancing Water Resource Management (WAMA) - Consultancy Services in Supervision of WWTPs and Capacity Development - Lebanon>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1E89ZEXB/de/overview?83|81295354-Framework Agreement: ProMOVIS - Short Term Expert Support on Sustainable and Inclusive Mobility in Colombia>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FDUSEVN/de/overview?33|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1LJTRMAE/de/overview?40|81303446 - Revision of a Technical Guideline on SGBV Clinical Management and Delivery of Training>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19W1KFGE/de/overview?57|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y195CV0A2/de/overview?59|81301730 - GET.invest Matchmaking Services in Support of Private Sector Mobilisation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19S77QHN/de/overview?60|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CVBA9A5/de/overview?69|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CKWSWS6/de/overview?73|81296181-Pilot Implementation of Demand Response in the Indian Electricity Distribution System>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CMJJUR3/de/overview?75|7200074952 - Framework Agreement for the Supply of Electric- & Plug-In-Hybrid Vehicles>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?0|81303882 - Support to IDDA in enhancement of existing digital wallet technologies and digital document management in Azerbaijan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FLZ6JLE/de/overview?3|81303242-Feasibility study for Biogas production-Bangladesh>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1F02T06C/de/overview?4|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1F0U9P72/de/overview?16|81303158-Consultancy for hazardous waste management in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L04VG6B/de/overview?29|81303597-Expert Study on blended financing and debt for Health>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYLRQ0V/de/overview?31|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FD2L0CV/de/overview?33|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1L7JJRLZ/de/overview?40|81303446 - Revision of a Technical Guideline on SGBV Clinical Management and Delivery of Training>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F195D91/de/overview?0|81303882 - Support to IDDA in enhancement of existing digital wallet technologies and digital document management in Azerbaijan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FP1L6HC/de/overview?3|81303242-Feasibility study for Biogas production-Bangladesh>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?4|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FN248VW/de/overview?16|81303158-Consultancy for hazardous waste management in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F6GW0M6/de/overview?29|81303597-Expert Study on blended financing and debt for Health>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FHLQV5M/de/overview?31|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L04VG6B/de/overview?33|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7Q0N2J/de/overview?40|81303446 - Revision of a Technical Guideline on SGBV Clinical Management and Delivery of Training>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1L5JH3QC/de/overview?57|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1CHU0P2E/de/overview?59|81301730 - GET.invest Matchmaking Services in Support of Private Sector Mobilisation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19W1KFGE/de/overview?60|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FZLZYY9/de/overview?0|81303882 - Support to IDDA in enhancement of existing digital wallet technologies and digital document management in Azerbaijan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F2QHFHG/de/overview?3|81303242-Feasibility study for Biogas production-Bangladesh>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FP1L6HC/de/overview?4|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FLXQA5Y/de/overview?16|81303158-Consultancy for hazardous waste management in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1FHRHAV6/de/overview?29|81303597-Expert Study on blended financing and debt for Health>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1F53M06U/de/overview?31|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FRBHK9P/de/overview?33|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYYC41G/de/overview?40|81303446 - Revision of a Technical Guideline on SGBV Clinical Management and Delivery of Training>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19VW1UTQ/de/overview?57|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y10EM1JEH/de/overview?59|81301730 - GET.invest Matchmaking Services in Support of Private Sector Mobilisation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYYRY1CHU0P2E/de/overview?60|81301832-Advisory and project management services under the ambit of Urban Labs to SUDSCII partner cities aimed at facilitating city visioning, integrated urban planning, sustainable urban development>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C2Y1W4L/de/overview?69|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CZ1C9QN/de/overview?73|81296181-Pilot Implementation of Demand Response in the Indian Electricity Distribution System>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1CKWSWS6/de/overview?75|7200074952 - Framework Agreement for the Supply of Electric- & Plug-In-Hybrid Vehicles>
<https://www.evergabe-online.de/tenderdetails.html?id=577440|Rahmenvereinbarung über die Verwaltung und Distribution von Stellenanzeigen (Los a) sowie Media- und Kreationsleistungen des Personalmarketings (Los b) für das Kaufhaus des Bundes (KdB)>
<https://www.evergabe-online.de/tenderdetails.html?id=573547|Kommunale Klimaschutzambitionen zielführend ausgestalten - Orientierungsrahmen für wirksame Klimaschutz-Zielstellungen in Kommunen>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7Z7JUB/de/overview?4|81301990a-Enhance the capacity of consultants, technical experts, government representatives working in the agricultural and food sector on understanding and implementation of the GLOBALG.A.P. Integra>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FWDV45F/de/overview?5|81303873 - (Certified) Training on Facility Management in Iraq>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?12|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYD0/de/overview?17|81296598-Responsible Sourcing in the Artisanal Cobalt Sector in the DRC>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?27|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?29|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FAF07C7/de/overview?30|81303829 - Heat planning in Cities through a multi-disciplinary integrated approach and peer learning>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FSTW28N/de/overview?31|81303440-Provision of a digital monitoring system and management support for ICM in Lesotho>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FP1L6HC/de/overview?36|81303874-Consultancy on introduction and implementation of CAF quality management model in EaP public administration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?38|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMDZBYH/de/overview?39|81303544-Advisory services to establish Gender Diversity Management in companies supporting the green transformation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FZYXZNW/de/overview?42|81303882 - Support to IDDA in enhancement of existing digital wallet technologies and digital document management in Azerbaijan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FKFLB7V/de/overview?46|81303242-Feasibility study for Biogas production-Bangladesh>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?47|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FLG7NZX/de/overview?57|81303158-Consultancy for hazardous waste management in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FD2L0CV/de/overview?67|81303597-Expert Study on blended financing and debt for Health>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?68|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYYC41G/de/overview?70|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19J9T32X/de/overview?80|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?85|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FNT0KWF/de/overview?0|81303828-Training to the accredited car mechanic vocational training centre pool of trainees on maintenance of electric vehicles.>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7Z7JUB/de/overview?8|81301990a-Enhance the capacity of consultants, technical experts, government representatives working in the agricultural and food sector on understanding and implementation of the GLOBALG.A.P. Integra>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FWDV45F/de/overview?9|81303873 - (Certified) Training on Facility Management in Iraq>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?16|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYD0/de/overview?21|81296598-Responsible Sourcing in the Artisanal Cobalt Sector in the DRC>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?31|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?33|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FAF07C7/de/overview?34|81303829 - Heat planning in Cities through a multi-disciplinary integrated approach and peer learning>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FSTW28N/de/overview?35|81303440-Provision of a digital monitoring system and management support for ICM in Lesotho>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FP1L6HC/de/overview?40|81303874-Consultancy on introduction and implementation of CAF quality management model in EaP public administration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?42|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMDZBYH/de/overview?43|81303544-Advisory services to establish Gender Diversity Management in companies supporting the green transformation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FZYXZNW/de/overview?47|81303882 - Support to IDDA in enhancement of existing digital wallet technologies and digital document management in Azerbaijan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FKFLB7V/de/overview?50|81303242-Feasibility study for Biogas production-Bangladesh>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?51|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FLG7NZX/de/overview?59|81303158-Consultancy for hazardous waste management in Jordan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FD2L0CV/de/overview?69|81303597-Expert Study on blended financing and debt for Health>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?70|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYYC41G/de/overview?72|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19J9T32X/de/overview?81|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?86|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FNT0KWF/de/overview?8|81303828-Training to the accredited car mechanic vocational training centre pool of trainees on maintenance of electric vehicles.>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7Z7JUB/de/overview?16|81301990a-Enhance the capacity of consultants, technical experts, government representatives working in the agricultural and food sector on understanding and implementation of the GLOBALG.A.P. Integra>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FWDV45F/de/overview?17|81303873 - (Certified) Training on Facility Management in Iraq>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?24|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYD0/de/overview?29|81296598-Responsible Sourcing in the Artisanal Cobalt Sector in the DRC>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?39|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?41|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FAF07C7/de/overview?42|81303829 - Heat planning in Cities through a multi-disciplinary integrated approach and peer learning>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FSTW28N/de/overview?43|81303440-Provision of a digital monitoring system and management support for ICM in Lesotho>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FP1L6HC/de/overview?48|81303874-Consultancy on introduction and implementation of CAF quality management model in EaP public administration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?50|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMDZBYH/de/overview?51|81303544-Advisory services to establish Gender Diversity Management in companies supporting the green transformation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FZYXZNW/de/overview?55|81303882 - Support to IDDA in enhancement of existing digital wallet technologies and digital document management in Azerbaijan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?57|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FKFLB7V/de/overview?61|81303242-Feasibility study for Biogas production-Bangladesh>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?74|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYYC41G/de/overview?76|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19J9T32X/de/overview?84|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?89|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
< https://www.bayern-innovativ.de/de/beratung/ptb/seite/bayvfp-mobilitaet-mia|BayVFP: Mobilität – Innovative Antriebstechnologien für mobile Anwendungen>
<https://www.evergabe-online.de/tenderdetails.html?id=578796|Gotha, Schloss Friedenstein
TP I, Westflügel, Integration Treppenhaus mit Aufzug
Los 15.1 - Tischler Fenster>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDK/de/overview?0|81299222-VB Support the Incubator/Accelerator Facility at NIRDA for the wood sector in Rwanda>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FNT0KWF/de/overview?12|81303828-Training to the accredited car mechanic vocational training centre pool of trainees on maintenance of electric vehicles.>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7Z7JUB/de/overview?20|81301990a-Enhance the capacity of consultants, technical experts, government representatives working in the agricultural and food sector on understanding and implementation of the GLOBALG.A.P. Integra>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FWDV45F/de/overview?21|81303873 - (Certified) Training on Facility Management in Iraq>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?28|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYD0/de/overview?33|81296598-Responsible Sourcing in the Artisanal Cobalt Sector in the DRC>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?43|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?45|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FAF07C7/de/overview?46|81303829 - Heat planning in Cities through a multi-disciplinary integrated approach and peer learning>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FSTW28N/de/overview?47|81303440-Provision of a digital monitoring system and management support for ICM in Lesotho>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FP1L6HC/de/overview?52|81303874-Consultancy on introduction and implementation of CAF quality management model in EaP public administration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?54|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMDZBYH/de/overview?55|81303544-Advisory services to establish Gender Diversity Management in companies supporting the green transformation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FZYXZNW/de/overview?59|81303882 - Support to IDDA in enhancement of existing digital wallet technologies and digital document management in Azerbaijan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?61|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FKFLB7V/de/overview?65|81303242-Feasibility study for Biogas production-Bangladesh>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?78|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYYC41G/de/overview?80|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19J9T32X/de/overview?88|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?93|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://www.evergabe-online.de/tenderdetails.html?id=578796|Gotha, Schloss Friedenstein
TP I, Westflügel, Integration Treppenhaus mit Aufzug
Los 15.1 - Tischler Fenster>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDK/de/overview?3|81299222-VB Support the Incubator/Accelerator Facility at NIRDA for the wood sector in Rwanda>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FNT0KWF/de/overview?15|81303828-Training to the accredited car mechanic vocational training centre pool of trainees on maintenance of electric vehicles.>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7Z7JUB/de/overview?23|81301990a-Enhance the capacity of consultants, technical experts, government representatives working in the agricultural and food sector on understanding and implementation of the GLOBALG.A.P. Integra>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FWDV45F/de/overview?24|81303873 - (Certified) Training on Facility Management in Iraq>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?31|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYD0/de/overview?36|81296598-Responsible Sourcing in the Artisanal Cobalt Sector in the DRC>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?46|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?48|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FAF07C7/de/overview?49|81303829 - Heat planning in Cities through a multi-disciplinary integrated approach and peer learning>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FSTW28N/de/overview?50|81303440-Provision of a digital monitoring system and management support for ICM in Lesotho>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FP1L6HC/de/overview?55|81303874-Consultancy on introduction and implementation of CAF quality management model in EaP public administration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?57|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMDZBYH/de/overview?58|81303544-Advisory services to establish Gender Diversity Management in companies supporting the green transformation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FZYXZNW/de/overview?62|81303882 - Support to IDDA in enhancement of existing digital wallet technologies and digital document management in Azerbaijan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?64|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FKFLB7V/de/overview?67|81303242-Feasibility study for Biogas production-Bangladesh>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?80|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYYC41G/de/overview?82|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19J9T32X/de/overview?90|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?94|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://www.bmbf.de/bmbf/shareddocs/bekanntmachungen/de/2024/01/2024-01-15-Foerderaufruf-Moldau.html|Forschungsperspektive Ost: Förderaufruf "bilaterale projektbezogene Mobilität mit der Republik Moldau">
<https://www.evergabe-online.de/tenderdetails.html?id=578796|Gotha, Schloss Friedenstein
TP I, Westflügel, Integration Treppenhaus mit Aufzug
Los 15.1 - Tischler Fenster>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDK/de/overview?4|81299222-VB Support the Incubator/Accelerator Facility at NIRDA for the wood sector in Rwanda>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FNT0KWF/de/overview?16|81303828-Training to the accredited car mechanic vocational training centre pool of trainees on maintenance of electric vehicles.>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7Z7JUB/de/overview?24|81301990a-Enhance the capacity of consultants, technical experts, government representatives working in the agricultural and food sector on understanding and implementation of the GLOBALG.A.P. Integra>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FWDV45F/de/overview?25|81303873 - (Certified) Training on Facility Management in Iraq>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYDA/de/overview?32|81298137-Development of tools, instruments and project concepts to leverage climate finance to scale up renewables and energy efficiency in Côte d'Ivoire>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXR2YYRYYD0/de/overview?37|81296598-Responsible Sourcing in the Artisanal Cobalt Sector in the DRC>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L7LSVE5/de/overview?47|Pool of energy efficiency experts>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1AMBFWDW/de/overview?49|81303930 - Renewable Energy Deployment Roadmap for Kosovo>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FAF07C7/de/overview?50|81303829 - Heat planning in Cities through a multi-disciplinary integrated approach and peer learning>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FSTW28N/de/overview?51|81303440-Provision of a digital monitoring system and management support for ICM in Lesotho>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FP1L6HC/de/overview?56|81303874-Consultancy on introduction and implementation of CAF quality management model in EaP public administration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMHFNQS/de/overview?58|81303704-Capacity Development on Green Energy Finance for Domestic Financiers>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FMDZBYH/de/overview?59|81303544-Advisory services to establish Gender Diversity Management in companies supporting the green transformation>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FZYXZNW/de/overview?63|81303882 - Support to IDDA in enhancement of existing digital wallet technologies and digital document management in Azerbaijan>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FK96YAK/de/overview?65|81301307 - Study to identify green FSD opportunities in the MENA region>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FKFLB7V/de/overview?68|81303242-Feasibility study for Biogas production-Bangladesh>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1L1QRSZU/de/overview?81|81303447-Implementing Energy Efficiency during refurbishment of non-residential buildings in Morocco>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1FYYC41G/de/overview?83|81303235 Improve the UI implementation for several government IT content management frameworks>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y19J9T32X/de/overview?91|81302812-Consultancy Services for improving the performance of the public institutions in Moldova in the process of EU integration>
<https://ausschreibungen.giz.de/Satellite/public/company/project/CXTRYY6Y1C82BB4U/de/overview?95|81294786-Development of Sustainable Energy and Climate Action Plans for selected Local Self-Government Units in Western Balkans>
<https://www.evergabe-online.de/tenderdetails.html?id=578796|Gotha, Schloss Friedenstein
TP I, Westflügel, Integration Treppenhaus mit Aufzug
Los 15.1 - Tischler Fenster>
<https://www.evergabe-online.de/tenderdetails.html?id=578736|Erstellung eines Zuwanderungs- und Integrationsberichtes 2024>
<https://www.evergabe-online.de/tenderdetails.html?id=580005|Neubau Feuerwehrhaus Osterwieck 19 Elektroinstallation>
<https://www.evergabe-online.de/tenderdetails.html?id=579739|Weiden, Weigelstraße 24, Bodenbelag>
<https://www.evergabe-online.de/tenderdetails.html?id=579723|REZ SW 45ind JC LK Kassel>
<https://www.evergabe-online.de/tenderdetails.html?id=579685|Außenanlagen, Errichtung Erdwälle, Stützwände und Munibehälter - TrÜbPl Altmark (Truppenlager Planken), Neubau MAO (NSB 17-24)>
<https://www.evergabe-online.de/tenderdetails.html?id=579613|Seminare des Jahresfortbildungsprogramms>
<https://www.evergabe-online.de/tenderdetails.html?id=579331|Support und Weiterentwicklung des Informations- und Bibliotheksportals des Bundes (ibib)>
<https://www.evergabe-online.de/tenderdetails.html?id=579269|GNUE, Martin- Luther- Universität Halle-Wittenberg, Errichtung Sportzentrum (SHL 683-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=579288|Dauerschuldverhältnis Gebäudereinigung Hamburg, Rostock, Breitenburg; Glasreinigung Rostock, Breitenburg>
<https://www.evergabe-online.de/tenderdetails.html?id=579128|Projektträger "Innovation und Strukturwandel">
<https://www.evergabe-online.de/tenderdetails.html?id=579323|Briefversand BAMF Rosenheim>
<https://www.evergabe-online.de/tenderdetails.html?id=579306|Erfurt, Mainzerhofstraße 12, LEG Bürogebäude, Erneuerung GLT Hardware Einzelraumregelung>
<https://www.evergabe-online.de/tenderdetails.html?id=579273|Entsorgung / Verwertung von Kommunalen Klärschlamm>
<https://www.evergabe-online.de/tenderdetails.html?id=579255|Lauf a.d.Pegnitz, Schützenstraße 50, Metallbau-Türen>
<https://www.evergabe-online.de/tenderdetails.html?id=578976|Entwicklung und Produktion eines Luftbeweglichen Waffenträgers (LuWa)>
<https://www.evergabe-online.de/tenderdetails.html?id=578971|Miete Etagendrucker>
<https://www.evergabe-online.de/tenderdetails.html?id=577066|Projektträger "DATIpilot">
<https://www.evergabe-online.de/tenderdetails.html?id=579094|GNUE Erweiterung JVA Halle, 3.TM, Herbert-Post-Straße 8, 06118 Halle (Saale) - (SHL 617-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=579126|Stahl- und Metallbauarbeiten Gebäude 37 - TrÜbPl Klietz, TrUkft Kaserne am See, Brandschutztechnische Ertüchtigung Gebäude 36 u. 37 (NSB 14-24)>
<https://www.evergabe-online.de/tenderdetails.html?id=579102|Gebäudeunterhaltsreinigung im DVL in Ansbach>
<https://www.evergabe-online.de/tenderdetails.html?id=578805|Lieferung von Forstmarkierfarbe und Transportbehälter für Farbspraydosen für Bundesforstbetriebe der Bundesanstalt für Immobilienaufgaben (Vergabenummer VOEK 552-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578717|Administrationssystem für Akademische Prüfstellen>
<https://www.evergabe-online.de/tenderdetails.html?id=578893|GNUE MLU Halle, Sanierung Chemie BT B und D, Kurt-Mothes-Str. 2, 06120 Halle-Wittenberg (SHL 679-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578630|Obstbaumnachpflanzung und anschließende Pflege>
<https://www.evergabe-online.de/tenderdetails.html?id=578916|Starkstrom-, Fernmelde- und Informationstechnische Anlagen - TrÜbPl Altmark (Truppenlager Planken), Bau MAO im TrLg Planken (NSB 10-24)>
<https://www.evergabe-online.de/tenderdetails.html?id=578937|Machbarkeitsstudie und Umsetzung Ausweitung Desksharing>
<https://www.evergabe-online.de/tenderdetails.html?id=578795|Vergabe einer Dienstleistungskonzession für den Kantinenbetrieb für die Zentrale des BALM>
<https://www.evergabe-online.de/tenderdetails.html?id=578858|Planmäßige Instandsetzung Ölschute Klasse 737 Ö13>
<https://www.evergabe-online.de/tenderdetails.html?id=578718|Rahmenvertrag externe Unterstützung für Fachverfahren MAPZ>
<https://www.evergabe-online.de/tenderdetails.html?id=577105|Rahmenvertrag über Zustelldienstleistungen / Paketversand für die Thüringer Staatslotterie AöR>
<https://www.evergabe-online.de/tenderdetails.html?id=575864|Offenes Verfahren (EU-weit) zur Vergabe von Gebäudereinigungsleistungen (Unterhalts- und Glasreinigungsleistungen) für die Bundespolizeiinspektion Hannover, für das Bundesamt für Familie und zivilgesellschaftliche Aufgaben, Bildungszentrum lth und die Bundespolizei MKÜ Hannover, Bundesanstalt für Immobilienaufgaben, Direktion Magdeburg>
<https://www.evergabe-online.de/tenderdetails.html?id=578651|Baumaßnahme: Julius-Kühn-Institut, Haus C, Technische Ausrüstung E-Technik
Leistungsbild: Technische Ausrüstung nach HOAI § 53 ff., AG 4, 5, HZ II, LPH 3-9, Besondere Leistungen>
<https://www.evergabe-online.de/tenderdetails.html?id=578570|Lieferung einer Großraumkehrmaschine 15 t>
<https://www.evergabe-online.de/tenderdetails.html?id=578594|Glas- und Rahmenreinigung RIM Bremen>
<https://www.evergabe-online.de/tenderdetails.html?id=578740|Rahmenvertrag Textilrestaurierung>
<https://www.evergabe-online.de/tenderdetails.html?id=578774|Landesbildungszentrum für Hörgeschädigte, Maßnahmen im Bauunterhalt, Wohnheim und Sozialtrakt - Ertüchtigung der BMA Wohnheim und Sozialtrakt (SHL 676-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578746|Trockenbau - Amtsgericht Oschersleben, Gartenstraße 1 (NML 671-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578690|Elektroinstallationen - Amtsgericht Oschersleben, Gartenstraße 1 (NML 06-24)>
<https://www.evergabe-online.de/tenderdetails.html?id=578700|Glas- und Fassadenreinigung im FLI Greifswald-Insel Riems>
<https://www.evergabe-online.de/tenderdetails.html?id=578674|Revierkommissariat Sangerhausen, Abbruch alte Hundezwingeranlage - Abbrucharbeiten (SHL 664-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578653|Lieferung und Aufstellung Container - Polizeiinspektion Stendal, Errichtung von Umkleideräumen in Containerbauweise als Interimslösung (NSL 678-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578528|Rahmenvereinbarung über die Pflege und Weiterentwicklung der Webangebote des Bundesarchivs>
<https://www.evergabe-online.de/tenderdetails.html?id=578563|Tiefbauarbeiten Trafostation>
<https://www.evergabe-online.de/tenderdetails.html?id=578637|KNUE - Landerechnungshof Sachsen-Anhalt, Anbau einer Aufzugsanlage am Flügel A - Rohbauarbeiten Anbau Aufzugsschacht (SDL 667-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578638|REZ NORD 45BM AA Emden-Leer>
<https://www.evergabe-online.de/tenderdetails.html?id=577375|Lieferung von ThinClients und Arbeitsplatztechnik für die Kreisverwaltung Saalekreis>
<https://www.evergabe-online.de/tenderdetails.html?id=578603|6002587305-BAPersBw I 3.5.2.3>
<https://www.evergabe-online.de/tenderdetails.html?id=578559|BU - BLSA TB Halle, Sanierung der BMA und der EMA (SHL 675-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578576|Außenanlagen - Neubau Polizeiärztliches Zentrum (PÄZ), An der Fliederwegkaserne 23, 06130 Halle/S. (SHL 674-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578592|Messe- und Veranstaltungslogistik RIM Köln>
<https://www.evergabe-online.de/tenderdetails.html?id=578582|KNUE - Landerechnungshof Sachsen-Anhalt, Anbau einer Aufzugsanlage am Flügel A - Lieferung und Montage Aufzugsanlage 630 kg / 8 Personen (SDL 668-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578552|Malerarbeiten - Amtsgericht Oschersleben, Gartenstraße 1 (NML 670-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=578556|3622SNA203 - Untersuchungen zum Auftreten von Funkenentladungen und Kontaktströmen - Literaturstudie>
<https://www.evergabe-online.de/tenderdetails.html?id=546192|IM - Beschleunigte Grundqualifikation Güterverkehr nach Berufskraftfahrerqualifikationsgesetz - Leipzig>
<https://www.evergabe-online.de/tenderdetails.html?id=578477|Erstellung eines Klimaschutzkonzeptes>
<https://www.evergabe-online.de/tenderdetails.html?id=577538|Inspektion und Wartung der Abwassersterilisationen und Peressigsäureansetzstation>
<https://www.evergabe-online.de/tenderdetails.html?id=577103|Rohbauarbeiten - Baumaßnahme der Bundeswehr, Übungsplatz Altmark TL Planken, Neubau U-Gebäude Typ 100/1+2 (227+229) (NSB 09-24)>
<https://www.evergabe-online.de/tenderdetails.html?id=577094|Bundesweiter Überblick und Bewertung der Angebote an Bedarfs-verkehren im Vergleich zu klassischen Linienverkehren im Öffentlichen Verkehr>
<https://www.evergabe-online.de/tenderdetails.html?id=577628|Metallbauarbeiten - Zaunanlage mit Toren und Übersteigschutz, Sachsen-Anhalt-Kaserne Weißenfels, Mängelabstellung an Sicherheitsempfindlichen Punkten des SanRgt. 1 (SHB 11-24)>
<https://www.evergabe-online.de/tenderdetails.html?id=577564|Berlin, Friedrichstr. 34, Trockenbau>
<https://www.evergabe-online.de/tenderdetails.html?id=577458|Umbau eines Bahnhofsgebäudes in ein kommunales Ärztehaus - Freiberufliche Leistungen, Los 6: Vermessung>
<https://www.evergabe-online.de/tenderdetails.html?id=576966|Namensschilder THW>
<https://www.evergabe-online.de/tenderdetails.html?id=577014|Instandhaltung Hallentore Bw FlPl Laage>
<https://www.evergabe-online.de/tenderdetails.html?id=576903|Sicherungs- und Bewachungsdienstleistung TU Ilmenau und Studierendenwerk Thüringen>
<https://www.evergabe-online.de/tenderdetails.html?id=577072|KKE054 Bodenbelagsarbeiten einschl. Estrich - GNUE des Landes Sachsen-Anhalt: Universitätsklinikum Magdeburg A.ö.R. Neubau Herzzentrum, Leipziger Straße 44, Magdeburg (NML 659-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=577080|ZAW - Flugerätmechaniker/-in Fachrichtung Instandhaltungstechnik - Landsberg | ML 352>
<https://www.evergabe-online.de/tenderdetails.html?id=577101|Erstellung einer Handreichung für die länderübergreifende Einführung eines Qualifizierungslehrganges im Kommunalen Mobilitätsmanagement (QL KMM+)>
<https://www.evergabe-online.de/tenderdetails.html?id=577049|REZ SW 45ind JC Neunkirchen>
<https://www.evergabe-online.de/tenderdetails.html?id=577000|Erfolgsversprechende Faktoren innerhalb kommunaler Verwaltungsstrukturen für eine erfolgreiche Mobilitätsplanung>
<https://www.evergabe-online.de/tenderdetails.html?id=576840|Abbruch Gebäude 131, 132 und 133 - Fachhochschule Merseburg (SHL 673-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=569214|Lieferung, Montage und Wartung zweier Spülanlagen, Bundespolizei Uelzen, Bundesanstalt für Immobilienaufgaben, Direktion Magdeburg>
<https://www.evergabe-online.de/tenderdetails.html?id=576342|Wohn- und Lebenskonzepte in der Peripherie>
<https://www.evergabe-online.de/tenderdetails.html?id=576287|Software Produktverbesserung SAFES>
<https://www.evergabe-online.de/tenderdetails.html?id=569181|Rahmenvertrag zur Beschaffung einer browserbasierten E-Mail-Marketing-Software>
<https://www.evergabe-online.de/tenderdetails.html?id=576486|Anschaffung von Verfolgerscheinwerfern (30-ZV-0212/23)>
<https://www.evergabe-online.de/tenderdetails.html?id=575628|Beschaffung von mobilen windowsbasierten Tablet-PC’s für den Bundesforst, Bundesanstalt für Immobilienaufgaben, Zentrale - VOEK 517-23>
<https://www.evergabe-online.de/tenderdetails.html?id=573731|Kurier- und Transportdienstleistungen>
<https://www.evergabe-online.de/tenderdetails.html?id=573253|Betrieb der Internate und Mensen an den Sportschulen des Landes Sachsen-Anhalt>
<https://www.evergabe-online.de/tenderdetails.html?id=573251|KdB-Rahmenvereinbarung für Gepäckprüfanlagen Typ 6>
<https://www.evergabe-online.de/tenderdetails.html?id=573578|1/DLII4/NV306 - TV-Module (neue Möbelserie)>
<https://www.evergabe-online.de/tenderdetails.html?id=568672|Beratungsleistungen für gemeinwohlorientierte KI-Projekte>
<https://www.evergabe-online.de/tenderdetails.html?id=573067|Rahmenvereinbarung über die Digitalisierung von Archivgut für das Bundesarchiv - Projekt NS-Unterlagen II >
<https://www.evergabe-online.de/tenderdetails.html?id=573028|Reifen für PKW und Transporter/Van>
<https://www.evergabe-online.de/tenderdetails.html?id=573182|Gebäudereinigung Köln, Krefeld, Dortmund; Glasreinigung Köln, Mülheim, Rheurdt>
<https://www.evergabe-online.de/tenderdetails.html?id=570326|ExWoSt: Praxistest zur Risikovorsorge für das baukulturelle Erbe – Erprobung der kommunalen Arbeitshilfe “Baukulturelles Erbe vor Risiken schützen und resilient gestalten“ des BBSR und BMWSB>
<https://www.evergabe-online.de/tenderdetails.html?id=570291|Rahmenvertrag zur Bereitstellung geschützter Feldlageranteile des Modulsystems Feldlager Bundeswehr Typ II als Dienstleisterlösung>
<https://www.evergabe-online.de/tenderdetails.html?id=570203|ZAW - Pharmazeutisch technische(r) Assistent/-in - Hannover>
<https://www.evergabe-online.de/tenderdetails.html?id=570073|GNUE Amtsgericht Bitterfeld-Wolfen, Lindenstr. 9, 06749 Bitterfeld-Wolfen - Sanierung und Erweiterungsbau (SDL 629-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=566740|Aktualisierung und Weiterentwicklung von anpassung.net und KLiVO-Portal 2024/ 2025>
<https://www.evergabe-online.de/tenderdetails.html?id=570254|Beleuchtung Domplatz Lieferung von Scheinwerfern und eines Steuerpultes zur Miete>
<https://www.evergabe-online.de/tenderdetails.html?id=570225|IM Kaufmann/-frau für Büromanagement - Flensburg>
<https://www.evergabe-online.de/tenderdetails.html?id=570054|Metallbauarbeiten - Auslandsgesellschaft Sachsen-Anhalt e.V., Magdeburg (NML 658-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=569337|Ausschreibung Datenschutzbeauftragter und IT-Sicherheitsbeauftragter>
<https://www.evergabe-online.de/tenderdetails.html?id=569434|KKE061 Tischlerarbeiten Sonstiges - GNUE des Landes Sachsen-Anhalt: Universitätsklinikum Magdeburg A.ö.R. Neubau Herzzentrum, Leipziger Straße 44, Magdeburg (NML 656-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=568605|Laborneubau Haus 7, Robert Koch-Institut, Fachplanung der Technischen Ausrüstung gem. § 53 ff HOAI, Anl.-Gr. 7.1 (Medizin- oder Labortechnische Anlagen, LPH 2 bis LPH 9 Grundleistungen sowie besondere Leistungen>
<https://www.evergabe-online.de/tenderdetails.html?id=569419|Anmietung Drucksysteme>
<https://www.evergabe-online.de/tenderdetails.html?id=569144|Rahmenvereinbarung über Catering-Dienstleistungen>
<https://www.evergabe-online.de/tenderdetails.html?id=569276|Erweiterung und Sanierung der Grundschule Westerhüsen mit Hort, Zackmünder Straße 1, 39122 Magdeburg - Los 4.05 - Starkstromtechnik>
<https://www.evergabe-online.de/tenderdetails.html?id=569480|IM Kaufmann/-frau für Büromanagement - Hamburg>
<https://www.evergabe-online.de/tenderdetails.html?id=569470|Personaldienstleistung Mitarbeiter Layhersystemgerüst- und Dekorationsbau für das Domplatz Open Air 2024>
<https://www.evergabe-online.de/tenderdetails.html?id=569384|Sicherheitsdienstleistungen für das Domplatz Open Air 2024>
<https://www.evergabe-online.de/tenderdetails.html?id=569381|Los 436 Aufzugsanlage Haus B - Polizeiinspektion Magdeburg (einschl. Zentrale Dienste), Neubau Haus A2, Sternstraße 12 (NML 585-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=569324|Ersatzbeschaffung Videosystem für das Prüf- und Testfeld auf der A4>
<https://www.evergabe-online.de/tenderdetails.html?id=569204|REZ NORD 45BM AA Hildesheim>
<https://www.evergabe-online.de/tenderdetails.html?id=568148|Nichtplanmäßige Instandhaltung Hochseeschlepper Kl. 722 Rügen>
<https://www.evergabe-online.de/tenderdetails.html?id=568122|Forschungsprojekt - DZSF - Digitale und datenbasierte Instandhaltung für Weichentechnik>
<https://www.evergabe-online.de/tenderdetails.html?id=560939|Sanierung Carl-Miller-Bad in Magdeburg, Planungsleistungen Technische Ausrüstung §§ 53 bis 56 HOAI, Anlagengruppe 1 bis 5 und 7 (Badewassertechnik)>
<https://www.evergabe-online.de/tenderdetails.html?id=568329|Arbeitsmedizinische und personalärztliche Betreuung im THW - Hauptamt>
<https://www.evergabe-online.de/tenderdetails.html?id=564380|Planungs- und Bauleistungen für den Neubau von drei Mehrfamilienhäusern mit 61 Wohneinheiten inkl. Untergeschoss, einer Tiefgarage und Außenanlagen sowie einer Gemeinschaftseinheit (Vergabenummer VOEK 150-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=563543|Offenes Verfahren (EU-weit) zur Vergabe von Gebäudereinigungsleistungen (Unterhaltsreinigungsleistungen) für das Fernstraßen-Bundesamt in Leipzig, Bundesanstalt für Immobilienaufgaben, Direktion Erfurt, VOEK 423-23>
<https://www.evergabe-online.de/tenderdetails.html?id=569091|Leasing -/ Mietwäschevertrag für eine Dienststelle in Leipzig>
<https://www.evergabe-online.de/tenderdetails.html?id=569069|REZ NORD 45BM AA Greifswald>
<https://www.evergabe-online.de/tenderdetails.html?id=569061|REZ NORD 45BM AA Greifswald>
<https://www.evergabe-online.de/tenderdetails.html?id=564300|Quartiers- und Citymanagements>
<https://www.evergabe-online.de/tenderdetails.html?id=568579|IM Unternehmens- und Existenzgründung - online>
<https://www.evergabe-online.de/tenderdetails.html?id=568537|Auditierung des IT-Wirksystems der Straßenbaulastträgermodelle (S-Modelle)>
<https://www.evergabe-online.de/tenderdetails.html?id=566473|Rahmenvertrag über die Produktion eines Films/ Filmen zur Darstellung der „Botschafter für Demokratie und Toleranz“ zum Festakt zur Feier des Tages des Grundgesetzes>
<https://www.evergabe-online.de/tenderdetails.html?id=568369|IM - Grundlehrgang Schweißen - Hamburg>
<https://www.evergabe-online.de/tenderdetails.html?id=568314|Sangerhausen, Baumschulenweg 1, Blitzschutz>
<https://www.evergabe-online.de/tenderdetails.html?id=568282|SPK-ZVS-23-00069-OeA-M-KK_Raumgestaltung_Heemskerck - Los 4>
<https://www.evergabe-online.de/tenderdetails.html?id=567337|Servicevertrag zur Instandsetzung der IP-Systeme im MPLS-Datennetz VT-BN>
<https://www.evergabe-online.de/tenderdetails.html?id=563304|Offenes Verfahren (EU-weit) zur Vergabe von Sicherheitsdienstleistungen für WE 129825: Zoll Technik- und Logistikzentrum Raiffeisenstraße 20, in 61169 Friedberg, Bundesanstalt für Immobilienaufgaben, Direktion Koblenz, VOEK 347-23>
<https://www.evergabe-online.de/tenderdetails.html?id=566746|Los 436 - Technikgebäude Elektro- Sicherheitstechnische Maßnahmen Landtag, Domplatz 6-9, 39104 Magdeburg (NML 639-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=567467|REZ NRW InRAM AA und JC in NRW>
<https://www.evergabe-online.de/tenderdetails.html?id=567239|REZ BBSAT InRAM AA Thüringen Ost>
<https://www.evergabe-online.de/tenderdetails.html?id=567313|Los 421 - HLS, Kälte - Sicherheitstechnische Maßnahmen Landtag, Domplatz 6-9, 39104 Magdeburg (NML 638-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=567196|REZ Bayern_InRAM_AA Dresden>
<https://www.evergabe-online.de/tenderdetails.html?id=567408|Q/K2DE/R8607>
<https://www.evergabe-online.de/tenderdetails.html?id=566720|Ausschreibung eines Output-Management Systems>
<https://www.evergabe-online.de/tenderdetails.html?id=566711|BA 19848 - Prüfung der ortsveränderlichen Betriebsmittel nach DGUV V3/4>
<https://www.evergabe-online.de/tenderdetails.html?id=567688|Vergabe einer Dienstleistungskonzession der Essensversorgung der kommunalen Kindertageseinrichtungen und der Grundschulen der EHG Osterburg (Altmark)>
<https://www.evergabe-online.de/tenderdetails.html?id=567454|Los 08 Dach- und Gerüstbauarbeiten - Sicherheitstechnische Maßnahmen Landtag (NML 654-23)>
<https://www.evergabe-online.de/tenderdetails.html?id=567515|Reinigung mikrobiell kontaminierter Archivalien des Bundesarchivs>
<https://www.evergabe-online.de/tenderdetails.html?id=567474|Sicherh.überpr. DGUV (RIM Mainz /7 Lose: Saarbr, Kaisersl.-Pirms, Neunk, Donnersbgkr, Zweibr, )>

Loading…
Cancel
Save