Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
MuleSoft Recuperando dados do salesforce
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Alex teles
August 10, 2016
Education
46
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
MuleSoft Recuperando dados do salesforce
MuleSoft Recuperando dados do salesforce2
Alex teles
August 10, 2016
More Decks by Alex teles
See All by Alex teles
Mulesoft configurando conexão com banco AS400 DB2
alexteles10
0
110
Chamando um flow de dentro do Transform Message
alexteles10
0
82
MuleSoft Juntando duas ou mais Listas ordenadas
alexteles10
0
76
MuleSoft Como mockar resultado com transform mensager
alexteles10
0
49
MuleSoft mock com set payload
alexteles10
0
60
Como excluir o conector do facebook Do anyponit
alexteles10
0
74
Baixando conectores que não são nativos
alexteles10
0
64
Editor do Anypoint
alexteles10
0
52
MuleSoft Como fazer um when dentro de um when
alexteles10
0
71
Other Decks in Education
See All in Education
【セーフィー】テクニカルライティング&コミュニケーション実践講座(26新卒エンジニア向け研修資料)
ymzaki_m4
0
220
AI時代に、 なぜ英語を勉強するのか
empelt
0
110
We部コミュニティスライド2026-04-24
junhat6
0
180
Course Review - Lecture 13 - Information Visualisation (4019538FNR)
signer
PRO
1
2.6k
2026年度春学期 統計学 第4回 データを「分布」で見る (2026. 4. 30)
akiraasano
PRO
0
140
BITCOIN : Les fondamentaux !
rlifchitz
0
170
2026年度春学期 統計学 第7回 データの関係を知る(2)ー 回帰と決定係数 (2026. 5. 21)
akiraasano
PRO
0
140
Implicit and Cross-Device Interaction - Lecture 10 - Next Generation User Interfaces (4018166FNR)
signer
PRO
2
2.3k
良い塩梅を実現する、AWSネットワーク3分クッキング
masakiokuda
1
260
LinkedIn
matleenalaakso
0
4.4k
Info Session MSc Computer Science & MSc Applied Informatics
signer
PRO
0
290
「機械学習と因果推論」入門 ② 回帰分析から因果分析へ
masakat0
0
710
Featured
See All Featured
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
123
22k
Efficient Content Optimization with Google Search Console & Apps Script
katarinadahlin
PRO
1
620
WCS-LA-2024
lcolladotor
0
630
sira's awesome portfolio website redesign presentation
elsirapls
0
280
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.8k
A better future with KSS
kneath
240
18k
How STYLIGHT went responsive
nonsquared
100
6.2k
YesSQL, Process and Tooling at Scale
rocio
174
15k
A Soul's Torment
seathinner
6
2.9k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.5k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
201
75k
Claude Code のすすめ
schroneko
67
230k
Transcript
None
Recuperando dados com conector do salesforce Transform Message
para recuperar os dados Imprimindo no log
Poll SalesForce Transform Message Logger
Como deve ficar
testo do log
<logger message="====Inicio======" level="INFO" doc:name="Logger"/>
None
<poll doc:name="Poll"> <schedulers:cron-scheduler expression="0 0 1 1 *
? 2016"/> <logger message="====Inicio======" level="INFO" doc:name="Logger"/> </poll>
None
<sfdc:query config- ref="Salesforce__Basic_Authentication" query="dsql:select CPF__c , Idade__c , Nome__c
from Informacoes__c" doc:name="Salesforce"/>
None
None
<dw:transform-message doc:name="Transform Message"> <dw:set-payload><![CDATA[%dw 1.0 %input payload
application/java %output application/json --- payload]]></dw:set-payload>
None
None
None
<?xml version="1.0" encoding="UTF-8"?> <mule xmlns:dw="http://www.mulesoft.org/schema/mule/ee/dw" xmlns:schedulers="http://www.mulesoft.org/schema/mule/schedulers" xmlns:sfdc="http://www.mulesoft.org/schema/mule/sfdc" xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd http://www.mulesoft.org/schema/mule/sfdc http://www.mulesoft.org/schema/mule/sfdc/current/mule-sfdc.xsd http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd http://www.mulesoft.org/schema/mule/schedulers http://www.mulesoft.org/schema/mule/schedulers/current/mule- schedulers.xsd http://www.mulesoft.org/schema/mule/ee/dw http://www.mulesoft.org/schema/mule/ee/dw/current/dw.xsd"> <sfdc:config name="Salesforce__Basic_Authentication" username="${sales.user}" password="${sales.password}" securityToken="${sales.token}" doc:name="Salesforce: Basic Authentication"/> <flow name="salesforcequeryFlow"> <poll doc:name="Poll"> <schedulers:cron-scheduler expression="0 0 1 1 * ? 2016"/> <logger message="====Inicio======" level="INFO" doc:name="Logger"/> </poll> <sfdc:query config-ref="Salesforce__Basic_Authentication" query="dsql:select CPF__c , Idade__c , Nome__c from Informacoes__c" doc:name="Salesforce"/> <dw:transform-message doc:name="Transform Message"> <dw:set-payload><![CDATA[%dw 1.0 %input payload application/java %output application/json --- payload]]></dw:set-payload> </dw:transform-message> <logger message="#[message.payloadAs(java.lang.String)]" level="INFO" doc:name="Logger"/> </flow> </mule>
Obrigado Fim