Ingesting Data into Veeva Vault CRM via SnapLogic – Alternatives to SFDC Snaps
We are currently in the process of migrating from our existing Veeva CRM (Salesforce-based) platform to Veeva Vault CRM. In our current integration landscape, we use SnapLogic to ingest data from our Specialty Pharma SFTP source into Veeva CRM, leveraging the Salesforce (SFDC) snaps for data ingestion and transformation. However, as we transition to Vault CRM, we’ve identified a gap—SnapLogic does not currently provide a native Snap pack for Veeva Vault CRM. We understand that support for Vault CRM is on SnapLogic’s product roadmap, but it is not expected in the immediate future. As part of our integration planning, we are reaching out to the SnapLogic community and experts to explore the following: Are there any existing Snap packs (e.g., REST, HTTP Client, SOAP, or JDBC snaps) that can be configured to support integration with Vault CRM? Has anyone implemented custom pipelines or reusable components for Vault CRM ingestion using generic SnapLogic snaps? Any known limitations, authentication considerations or Vault-specific constraints we should be aware of when building these integrations? We greatly appreciate any insights, lessons learned, or recommendations from those who have explored similar integration use cases. Thank you in advance for your time and input.22Views0likes2CommentsCannot read more than 2,147,483,647 into a byte array
Hello, I am facing issue while reading a huge file (more than 2 GB) in size. I want to read the file and zip the file.I tried in 2 ways and in both i am getting the error. Method 1: After file reader snap, I am using a Binary to Document (Encode or Decode is set to NONE and also tried with BYTE_TO_ARRAY)snap followed by a mapper and then Document to Binary Snap(Encode or Decode is set to NONE and also tried with BYTE_TO_ARRAY) . In mapper following expression is used to map the data : $[‘content-location’].substr([‘content-location’].lastIndexOf(“/”) + 1) → $[‘content-location’] $content → $content In this case I am getting “Cannot read more than 2,147,483,647 into a byte array” error. Method 2: After File reader snap, in mapper i have used binary i/p and o/p view and used the following expression to map the data : $[‘content-location’].substr([‘content-location’].lastIndexOf(“/”) + 1) → $[‘content-location’] $content → $content After few seconds of execution, the pipeline is getting hung and I am getting error “Lost contact with Snaplex node while the pipeline was running” Is there something whcih I am missing ??3.4KViews0likes3CommentsPerform a Post API OAuth 2.0 call to get token and pass token to a GET API Basic Auth Header
I need to make a Post Rest API call using OAuth 2.0 with client_id and client_secret and then pass the token to a Get Rest API snap to make the api call Client Authentication ‘Send as Basic Auth Header’. How can I do this using the Rest Snaps?3.6KViews0likes2CommentsHow i retrieve status information of master pipeline using Snaps in designer? without using dashboard and tasks
Hi.i am new learner in snaplogic please help me .I need to trigger an email when the master pipeline is running longer than expected like an hour is an usual expectation. how can i perform this job in pipeline? if my pipeline is running more than expected time the email will notify ourself. which snap is used to fulfil my requirement .please tell me.We Need You: Influence Our Next Big Thing
Hey there, I’m Jackie Curry, a new member of the user experience team at SnapLogic. We’re working on some exciting improvements to SnapLogic and I need your help to influence our upcoming products through user research. We’d like to show you some early concepts of what we’re working on to get your feedback and input. We want to know if these changes would help you do your job more efficiently. Plus, as a thank you, we’re offering a $100 gift card incentive to all participants who complete the study. If you’re interested, please email me at designresearch@snaplogic.com and I’ll set up a time to chat. Don’t worry, I promise to keep it brief! Thank you, Jackie – Jackie Curry Principal User Experience Designer jcurry@snaplogic.com2.4KViews5likes1CommentCreate a file path with a date in File Writer snap
I have a pipeline that generates an output file that I would like to save in S3 with a file path of YYYY/MM/dd/file_name… e.g. S3://bucket/2023/08/09/file_name.csv. When I do this: “s3:///bucket/”+Date.now().getFullYear()+“/”+Date.now().getMonth()+“/”+Date.now().getDate()+“/fil_name.csv” It generates a path of 2023/8/9, How can I programmatically determine when to pad it with a ‘0’ for single digit months and days without including this data in the document being saved?2.5KViews0likes2Comments