This website uses Cookies. Click Accept to agree to our website's cookie use as described in our Privacy Policy. Click Preferences to customize your cookie settings.
In addition to the Known Issues in the 4.22 Release Notes, I want to raise some awareness to a couple of other issues and fixes that I’ve experienced with the Python Script after the 4.22 upgrade - (with the intent of helping anyone else that may be ...
(Disclaimer: I am not very experienced at Eclipse/Maven/Java, but I can pretty much handle my own with most languages, syntaxes, and IDEs)
My last build for a snap was in December 2018. I have test classes. Everything was successful.
Today, I tried...
I have a snap, that I have developed, for which I would like to add the “Execute during preview” capability.
Can anyone provide me with java code capable of accomplishing this? I do not need the code to create the UI feature, property or variable. ...
Our team hasn’t added a Structure snap to a new pipeline in 2 or 3 years, I think. Is there any advantage it carries over the Mapper snap? We have an improvement/cleanup effort started for our older pipelines and thinking about replacing the Struct...
We have a use case to pull all fields from wide objects in Salesforce. I keep running into “field limit” errors: .
Does anyone have any logic or best practice for pulling in all fields from wide Salesforce objects?
I think you can add your filter expression within the complete expression where the new object is being created:
{"h1": { "h2": {f: $.entries().map(x => {"@name": x[0],"$": x[1]}.filter((val, key) => (val != ''))) }}}
@skhatri,
Maybe the following expression will provide some assistance to get you close.
{"h1": { "h2": {f: $.entries().map(x => {"@name": x[0],"$": x[1]}) }}}
This expression combines the Object entries() and the Array map() functions together to bui...
You might could consider disabling the Allow Empty Query Result option and enabling an error view which would capture the pass-through data in the event that no results are returned. Then follow up with a Union snap and mapping as needed.
Something ...
There are probably a dozen or more ways to do this, but not knowing your full requirements, I’ll just give a couple of expression language examples that I worked up just to get the minimal output for an example. My output is just integers that you co...