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
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
100
Chamando um flow de dentro do Transform Message
alexteles10
0
81
MuleSoft Juntando duas ou mais Listas ordenadas
alexteles10
0
75
MuleSoft Como mockar resultado com transform mensager
alexteles10
0
48
MuleSoft mock com set payload
alexteles10
0
58
Como excluir o conector do facebook Do anyponit
alexteles10
0
73
Baixando conectores que não são nativos
alexteles10
0
63
Editor do Anypoint
alexteles10
0
49
MuleSoft Como fazer um when dentro de um when
alexteles10
0
70
Other Decks in Education
See All in Education
プログラミング言語において文字列を複数行にわたって だらだらと記載するアレ
sapi_kawahara
0
110
Investigating Changes in Self-Assessed Spoken English Proficiency in a Three-Week Study-Abroad Program
uranoken
0
180
2026年度春学期 統計学 第1回 イントロダクション ー 統計的なものの見方・考え方について (2026. 4. 9)
akiraasano
PRO
0
120
反応する前に「受容する」力を鍛える。 自分の安全地帯🌱 を育てよう / Cultivating and sharing ventral vagal safety.
spring_aki
0
170
良い塩梅を実現する、AWSネットワーク3分クッキング
masakiokuda
1
250
Managing Complexity: India’s Semiconductor Ambitions & New Industrial Policy
vyadav
0
150
0415
cbtlibrary
0
180
偶然のチャンスを掴みに行けるのは君だ!
kotomin_m
2
100
2026年度春学期 統計学 講義の進め方と成績評価について (2026. 4. 9)
akiraasano
PRO
0
160
Alumnote inc. Company Deck
yukinumata
1
18k
Gitがない時代 インターネットがない時代の 開発話
sapi_kawahara
0
130
Data Management and Analytics Specialisation
signer
PRO
0
1.8k
Featured
See All Featured
Why Your Marketing Sucks and What You Can Do About It - Sophie Logan
marketingsoph
0
150
A Soul's Torment
seathinner
6
2.8k
The Art of Programming - Codeland 2020
erikaheidi
57
14k
HTML-Aware ERB: The Path to Reactive Rendering @ RubyCon 2026, Rimini, Italy
marcoroth
1
64
Max Prin - Stacking Signals: How International SEO Comes Together (And Falls Apart)
techseoconnect
PRO
0
160
Darren the Foodie - Storyboard
khoart
PRO
3
3.3k
The B2B funnel & how to create a winning content strategy
katarinadahlin
PRO
1
360
The Mindset for Success: Future Career Progression
greggifford
PRO
0
330
svc-hook: hooking system calls on ARM64 by binary rewriting
retrage
2
250
How Software Deployment tools have changed in the past 20 years
geshan
0
33k
Navigating the Design Leadership Dip - Product Design Week Design Leaders+ Conference 2024
apolaine
1
320
Information Architects: The Missing Link in Design Systems
soysaucechin
0
930
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