ContributionsMost RecentMost LikesSolutionsRe: Running Child Pipeline if Parent Pipeline is Successful @tlikarish for this to work, we need to have no open inputs or output in pipeline. But there are snaps which do not have optional input/ouput. In such case do you know of the dummy snap that I can use to close of the open output of the snap in a pipeline? Currently, I am using MySQL Execute snap with SQL statement as SELECT 1; but this is not efficient as this still makes connection to a database hence I am looking to replace this with some dummy snap to close of the output. Re: Running Child Pipeline if Parent Pipeline is Successful @tlikarish Thank you for the example! It is working as expected. The only thing I need to make sure is that there are not open input or output in the child pipelines Creating File in NetSuite File Cabinet using NetSuite Create Snap I have various types of binary files such as word document, Excel, PDF, images etc. stored in MySQL DB as blob storage. I am transferring this files to NetSuite File Cabinet using NetSuite Create snap and selecting File as record type. The problem is that when I run the snap, it is only creating partial files on NetSuite. For e.g. I have one PDF file of 21KB but on NetSuite it is only creating PDF file with size of 6Bytes hence it is a corrupted file. How do I make sure the file is getting transferred correctly from MySQL blob to NetSuite File cabinet? Re: NetSuite Attach Operation @skodali I have file stored in DB as blob storage. Through MySQL I fetch these blob data and map it to file record of NetSuite create Snap. File gets successfully uploaded on NetSuite File Cabinet folder but for some reason, file size is way less then what it is and I can not open file from NetSuite once it is published. Re: NetSuite Attach Operation @skodali Yes I am able to upload file to NetSuite File Cabinet using SnapLogic. But I couldn’t find a way to attach that file with vendor record using SnapLogic even though NetSuite WebServices supports it. NetSuite Attach Operation We are building a pipeline where we create a vendor record in NetSuite using NetSuite Create Snap. We also have some attachments related to vendor that we would like to attach to the vendor when it is created in NetSuite using NetSuite Snaps. Based on NetSuite Doucment, we have attach method that we can use to attach file to vendor record. We can upload a file in NetSuite File Cabinet using NetSuite Create Snap and selecting File record. But I do not see this attach option in NetSuite Snap anywhere. How do I send the attachment details in NetSuite while creating a record? Or how do I link the attachment to record once it is uploaded in File Cabinet using available NetSuite Snaps? Re: Running Child Pipeline if Parent Pipeline is Successful @tlikarish Thank you for the suggestion. Would it be possible for you provide one example which will help me understand better what you are suggesting? Re: Running Child Pipeline if Parent Pipeline is Successful @tlikarish thanks for reply. Actually both my Parent and Child pipeline completely independent. In your example you are doing MySQL update and calling the Pipeline Execute Snap to call the child pipeline. But in my case in Parent pipeline, I am doing mapping and using diff snap to update and insert the MySQL table. Also pipeline used in Pipeline Execute snap must have some kind of input open which in my case there is no input in child pipeline. Basically think like we have multiple pipelines and we need to chain them together so that successful run of one pipeline triggers execution of next pipeline in the chain. All these pipelines in chain do not have open input or output which is required by the Pipeline Execute snap. If any of the pipeline fails in the chain, then execution stops at that pipeline and further pipelines in chain are not executed until chain is restarted from the beginning. Is it possible to do in SnapLogic? Running Child Pipeline if Parent Pipeline is Successful I have a child pipeline which depends on successful execution of other parent pipeline. In parent pipeline, I am updating some MySQL tables from external source. Then in child pipeline, this updated MySQL tables are used in custom SQL query. I need to ensure that before running this custom query in child pipeline, parent pipeline has properly updated the tables in MySQL DB and it didn’t failed hence before running child pipeline I need to know if the parent pipeline was executed successfully or not. How do I achieve this? SolvedZoom JWT Token Generation I have pipeline setup to get and update data from Zoom using REST snaps. Zoom uses JWT token for authentication as described below post https://marketplace.zoom.us/docs/guides/auth/jwt I used https://jwt.io/ to generate the token manually as described in above document from Zoom. Now, I want to automate this token generation process using JWT snaps. I tried to set up the account for JWT in SnapLogic but there are some properties that are used in SanpLogic JWT account such as KeyStore which is not used for Zoom JWT token generation as mentioned in above Zoom article. Can someone please help me setup the JWT token generation process using JWT snaps for the Zoom as described in above document from Zoom?