ContributionsMost RecentMost LikesSolutionsExecute pipeline Hi, I have a situation that my output view looks like this: So it is an array with 3 objects. In the next snap I have “Execute pipline” snap but it executes once for all arrays. I would like to execute this pipline for each object in this table, so 3 times. I tried to use the “Splitter” snap before “Execute pipline” but it doesn’t work. Could you help me? Change nested arrays into one array Hi, I have a situation like below: I have array "Allowance_Plan’ and in this array I could have many elements which also are arrays. Child arrays as a elements contains objects. In this case I have 2 arrays with 2 object in each of them. As a final result I would like to receive one array “Allowance_Plan” which contains 4 objects. (2 from first child array and 2 from second child array) Please suggest how to solve this problem. SolvedObject mapping I have a situation in which for one object I can have more than one node which has the same name. However, each node may be different by additional attributes "IsUpdated, “IsAdded”. It is also possible that the node doesn’t have any attentional attributes. I would like to divide this object into two objects where one will have only nodes which have attribute “IsUpdated” and the second IsAdded. So 1 document will have <peci:Position peci:isUpdated> <peci:Compensation peci:isUpdated> <peci:Compensation_Plans peci:isUpdated> second document will have: <peci:Position peci:IsAdded> <peci:Compensation peci:IsAdded> <peci:Compensation_Plans peci:IsAdded> <peci:Collective_Agreement peci:IsAdded> To do it I tried to use some elastic mapping $…[?(value.hasOwnProperty(‘@peci:isAdded’) )] but it doesn’t work. I would appreciate your help on this. Re: Problem with grouping objects @dmiller I am a little closer to solve my problem but to solve it I still have some issue. SnapLogic_Community_2019_10_22.slp (28.7 KB) So after mapper snap I use sorting snap and later grouping snap and the output from this snap it seems ok.In the last step I use mapper snap with expression “{}.extend(…$group)”. The structure in output file is ok, but columns LeaveOfAbsenceEventGroup and LeaveRequestEventGroup are null for employee “Adam Grey” and I expected that in this case I also receive values. Could you explein me what I am doing wrong? Re: Problem with grouping objects @dmiller It seems that I have to use firstly Union because I don’t know in which file I will have data for the same employee, maybe it happen in second and third files (additionally in this example there are 3 files but in the future there will be more files ). Union and later using grouping seems correct approch but I have a problem with implement it. Problem with grouping objects I have tree xml files. Each of the files contains the same section “Workers” and another section which doesn’t have to be in another file. I would like to group it after common section and get situation in which specific Employee contain such tags which are in diffrent files. To be precise, I have a situation as below I have three records, and for employee “Adam Grey” I have two records - in one record there are data for TimeOffEventGroup column and for another record there are data for LeaveRequestEventGroup ,LeaveOfAbsenceEventGroup columns. I would like to union these two records in such a way that for “Adam Grey” I have one record and there are data fill for each of these columns. In the attachment I will send pipline. SnapLogic_Community_RU_2019_10_22.slp (34.5 KB) Please suggest how to solve this issue. SolvedRe: Problem with XLM Generator snap @ptaylor Yes, I used xsd to generate the template. The general situation is that I get xml files from api. For this file I have a generate scheme which I add to XML Generator.The xml file has a prefix peci, but it is absent in the scheme. (For the purposes of this example, simply on the basis of this xml I created JSON as a source) It seems very strange that using the file and the dedicated scheme I cannot map array from the source with the same array from the scheme.I’ve tried different options, also with removing the prefix, which of course is not the solution to the problem, but even in this situationarray of workers doesn’t map and the generator did not return filled objects. I am enclosing the scheme and dedicated xml file in txt format, because I cannot add xsd format. File.txt (31.0 KB) Schema.txt (137.6 KB) Re: Problem with XLM Generator snap @ptaylor I am aware that there exists some output for the XML Generator, but as you see on your screen the tags (Worker) are empty and that is a problem. The output from Mapper has some data for Workers but XML Generator does not. To be more precise, for JSON generator we receive JSON with information regarding 5 workers and some other fields. I expected that as output from XML Generator I would also receive only 5 tags workers (without additional tags), and each tag would contain information about one worker. The template XML teoreticaly looks ok: In mapper snap I mapped array worker from json and array workers from XML Generator but it doesn’t work. Could you please tell me how the mapper snap or XML Generator snap should be set so that the output from XML Generator contains an xml file with correctly filled tags? Problem with XLM Generator snap I have a problem with generating xml file using XML Gnerator. I have a json and use Mapper snap together with XML Generator to create xml file. My mapper looks like this: So I mapped array to array. The results of mapper looks ok, but I receive empty output from XML Generator snap: So it shows that mapper doesn’t work correctly. In the attachment I will send pipline.XML Generator Community Example_2019_10_17.slp (220.4 KB) Please suggest how to solve this problem.