ContributionsMost RecentMost LikesSolutionsRe: My response always shows < for all the values inside XML instead of < after the xml formattersnap I checked in Canonical XML checkbox in XML formatter snap and it worked!!! My response always shows < for all the values inside XML instead of < after the xml formattersnap I am passing the below input to XML formatter from mapper snap as string to XML formatter snap. Before XML formatter snap: "openEngine": "<items>\n<item \n</item>\n</items>" After XML Formatter snap: <?xml version='1.0' encoding='UTF-8'?><openEngine><items> <item </item> </items></openEngine> Expected Output: <?xml version='1.0' encoding='UTF-8'?><openEngine><items> <item <item> <items></openEngine> Please can you advise on this. Thanks in advance! SolvedHow to fetch value from array? Hello Team, I have the below array and I need to fetch the filename where active=1. Please can you help me on this. “array” : [ { “active”: 0, “fileName”: “test.pdf” }, { “active”: 1, “fileName”: “test1.pdf” } ] Thanks in advance! Need help in GIT Repository Hello Team, Is it possible to connect GIT repository from SnapLogic? If yes, please let me know how to connect it. I know that there is no separate snap pack for this. Just wanted to know. Thanks in advance! Zip File Write Hi Team, I am trying to write a zip file with data as CSV formatted with file name as exteact.zip. I was able to write it as zip file but when i extract it i see a file inside with input0. But I don’t want this input0 to be inside the zip instead i would need file name(extract.csv) itself. Appreciate your help here. thanks in advance! Need Help in Logic Hi All, My input is 123.45 → i should transform as 12345 123.456 then i should transform as 12345 should include only two characters after decimal point. thank you in advance! Re: How to get few fields as separate rows in target in a same file Hi @koryknick , You ROCK!!! Its working thank you so much!! Let me do the remaining mapping. How to get few fields as separate rows in target in a same file I have Record Identifier, Name, Record Identifier 1, Value coming from input. I want Record identifier and name needs to be written in Row 1 and Record Identifier 1 and Value needs to be written in Row 2. Like as below example. Any idea on how to achieve it? Record Identifier Name Record Identifier 1 Value Thank you in advance! SolvedRe: How to fetch values from below array? Hi @viktor_n and everyone, When I tried the above expression. I am getting response like below. [{“Active_Flag”: “Y”},{“Data_flag”:“N”}, {“id”:“1”} ] [{“Active_Flag”: “N”},{“Data_flag”:“Y”}, {“id”:“2”} ] I wanted to flattened this records like below, Id :1, Active_Flag: Y, Data_flag: N Id :2, Active_Flag: N, Data_flag: Y I tried json splitter it gives me whole array as flattened with no relation. Can you please suggest me something. thank you in advance! Re: How to fetch values from below array? Hello @viktor_n , you rock!!! It is working, thank you so much for the help!