Bonjour à tous,

Voilà mon problème, je dois extraire des données d'une BDD et tout reconstruire dans un fichier xml avec Pentaho 8.3

- Extraction des données OK
- Création d'un xml OK

En utilisant les boites (dans l'ordre):
- Extraction Table
- Alteration structure flux
- Agregation valeur
- Ajouter ligne XML
- Export XML

j'obtiens cette structure :

Code XML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
<header>
           <attribut_1>xxxx</attribut_1>
           <attribut_2>xxxx</attribut_2>
           <attribut_3>xxxx</attribut_3>
</header>


Mon souci se trouve dans l’arborescence des noeuds j'ai besoin d'aller plus en profondeur
Voilà ce que je dois IMERATIVEMENT obtenir :

Code XML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<titre_doc>
	<header>
		<attribut_header_1>xxxx</attribut_header_1>
		<attribut_header_2>xxxx</attribut_header_2>
		<attribut_header_3>xxxx</attribut_header_3>
	</header>
	<structure_1>
		<element_1>
			<attribut_element_1>xxxx</attribut_element_1>
			<property>
				<attribut_propiete_1>xxxx</attribut_propriete_1>
				<attribut_propiete_2>xxxx</attribut_propriete_2>
			</property>
		</element_1>
	</structure_1>
 
	<structure_2>
		<attribut_structure_1>xxxx</attribut_structure_1>
		<attribut_structure_2>xxxx</attribut_structure_2>
		<attribut_structure_3>xxxx</attribut_structure_3>
	</structure_2>
</titre_doc>

J'avoue que j'ai écumé le net depuis pas mal de semaines, testé beaucoup d'arborescence et de boites
Mais là je sèche
Si quelqu'un pouvait mettre sur la voie
Par avance un grand merci