ContributionsMost RecentMost LikesSolutionsRe: Replace files content in a folder Can you add more details on where this folder is (s3, sftp, ftp, smb) and what type of files are you looking for (json,xlsx,csv) ? Re: Deployment of pipelines to different Orgs You have to go to the manager tab. Open the Project Space where your project is located. When you find the Project you want to migrate you need to click on the arrow next to the project name and select the migrate option. you will have to choose to which environment and which project space in that environment you want to migrate. Once you select that the next window will appear where you need to select what asset you want to migrate (Files, Accounts, Tasks, Pipelines). Example: If you select the pipeline option all of the pipelines will be migrated to the environment you chose. NOTE! - You cannot specify individual pipelines for migration using the Migrate option. You will have to use the import and export functionality for a single/multiple pipelines. Re: How to get the SalesOrder record Details using the Netsuite Snap? Hey Kullay, Like Nikola mentioned above in the example, if you enter the Internal ID for a particular Sales Order the NetSuite Search snap will return details only for that SalesOrder. You may receive a list of records but that would be the items in that sales order, one sales order can have multiple items. Note! - I’m not sure if NetSuite can return multiple Sales Orders for the same Internal ID you might need to check that. Regards, Re: Replacing Multiple Special Character Hello, You are correct that we can’t list all of the special characters in the replaceAll function. However you can use the replaceAll function to solve this issue, you just have to place the function as demonstrated in the example below: On source I have a field with the name: $field with a value ‘Andrej%#@!’. I am using the following expression: $field.replaceAll(‘%’,‘’).replaceAll(‘#’,‘’).replaceAll(‘@’,‘’).replaceAll(‘!’,‘’).replaceAll(‘*’,‘’). Even if you are missing one special character in the value and you do have it in the expression it’s not an issue the expression will still work. Example: I am missing the * special character in the value but i have it in the expression and it still works. Let me know if this fixed the issue for you. Regards, Re: Custom Snap Hello, We have posted a few blog posts regarding custom snap development on our website. I am sending you the URL for the 3 custom snaps developed by us that we have published so far, I believe you will find them useful. If you have any questions you can reach out to us. Sleep snap: https://interworks.com.mk/development-of-custom-sleep-snap-for-snaplogic-platform/ Flow Reset snap: https://interworks.com.mk/development-of-a-custom-flow-reset-snap-for-the-snaplogic-platform/ Generic JDBC - Table Operation snap: https://interworks.com.mk/generic-jdbc-table-operation-custom-developed-snap/ Regards Re: Multi File Reader Hello, Can you please provide more details on how the Multifile reader snap is configured? My guess would be that you can use TEST_PO_* as a wildcard to read all the files starting with TEST_PO_. Re: How to make a Pipeline wait during execution Hello, I would like to inform you that we have created another solution to this issue. We created a custom snap which is called ‘Wait’, the purpose of the custom snap is to avoid writing scripts and use a simple connector/snap for a simple function like this. You can read more about our custom snap on our website or you can use this URL: https://interworks.com.mk/development-of-custom-sleep-snap-for-snaplogic-platform/ If you have any questions you can contact me. Regards Re: Flatten json respose to load into relation db Hello Siva_Venna I developed a simple pipeline and it meets all of your requirements, i can be certainty improved but it is working as expected. I will send the pipeline as an attachment. TestCommunity_2019_05_23.slp (8.9 KB) Re: Got error while executing the SAP IDoc Write snap Hi Gopi, The connection to the SAP server seems to be failing. If you have an account set up in the SAP IDoc Write snap can you make sure it is working correctly. Just go into the accounts tab in the SAP IDoc Write snap click edit account and Validate the account after that. Error Handling in SnapLogic - InterWorks Hello We have a blog post posted on the topic Error Handling and Best Practices on our website which i am sending the URL below. We cover most of the stuff you need to know about error handling and what are the best practices to implement in the pipelines for the error handling. Please be free to leave a feedback in the comments section and if you have any further questions you can contact me. https://interworks.com.mk/error-handling-in-snaplogic/