<?php
/**
* @author Bettina Schwarzer, Fritz-Haber-Institut
* @copyright 04/2012
*
* Reportauswahl Info (GVP)
*
*/
error_reporting(E_ALL ^ E_NOTICE);
session_start();
if (! isset($_SESSION["userid"]))
{
include_once ("inc/func_lib.inc.php");
login("info_report.php");
exit;
}
if (is_null($_SESSION["recht"]) || (!is_null($_SESSION["recht"]) && !in_array("ir",$_SESSION["recht"]) && !in_array("ie",$_SESSION["recht"])))
{
header("Location: start.php");
exit;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<link href="css/db.css" rel="STYLESHEET" type="TEXT/CSS" />
<link href="css/navio.css" rel="STYLESHEET" type="TEXT/CSS" />
<meta name="author" content="Bettina Schwarzer,FHI" />
<title>Reports Info</title>
</head>
<body>
<?php
echo " ";
echo "<div class=\"float-br smaller\" valign='top'>";
echo " user: " . $_SESSION["userid"];
echo " <a class='sc' href='/fhiiqm/logout.php' title='Session beenden'>logout</a></div>\n";
echo "<div class=\"float-r sc\"><img src=\"/fhiiqm/img/document_image_ver.png\" border=\"0\" alt=\"Berichte GVP\" title=\"Berichte GVP\"/></div>\n";
?>
<h3> Berichte Informationen</h3>
<div align="center">
<table width="94%" cellspacing="4" cellpadding="4">
<tr>
<td class="bigger">
<a href="/fhiiqm/report/info_report_gvp.php" title="Geschäftsverteilungsplan 1">Geschäftsverteilungsplan nach Produkten</a>
<br /> Auswahl: Produktbereich, Produktgruppe, Status Freigabe
<br /> Ansicht: Kennzeichen, Aufgabe(Produkt), Teilgebiet(Kurz-Info), Verantwortliche(r), Status
</td>
</tr>
<tr>
<td class="bigger">
<a href="/fhiiqm/report/info_report_gvp.php?r=k" title="Geschäftsverteilungsplan 2">Geschäftsverteilungsplan nach Kennzeichen</a>
<br /> Auswahl: Kennzeichen, Status Freigabe
<br /> Ansicht: Kennzeichen, Aufgabe(Produkt), Teilgebiet(Kurz-Info), Verantwortliche(r), Status
</td>
</tr>
<tr>
<td class="bigger">
<a href="/fhiiqm/report/info_allg_report.php" title="Info">Informationen</a>
<br /> Auswahl: Produktbereich, Produktgruppe, Infotyp, Adressat, Status Freigabe
<br /> Ansicht: Kennzeichen, Infotitel, Zuordnung zu Info, Kurzinfo, Produkt, Infotyp, (Adressat,) (Ort,) Status
</td>
</tr>
<tr>
<td class="bigger">
<a href="/fhiiqm/report/ma_relation_report.php" title="MA - Bezüge">Mitarbeiter - Beziehungen</a>
<br /> Auswahl: Status, Mitarbeiter, Abteilung(, Datum ab)
<br /> Mitarbeiter und ihre Zuordnungen
</td>
</tr>
</table>
</div>
</body>
</html>