Which item is not on a DataRaptor best practice list?
Anonymous Quiz
43%
Create targeted DataRaptors that only extract or load the data needed for one operation.
9%
Use relationship notation (queries) whenever possible to pull data from other SObjects.
19%
Try to keep the number of SObjects to five or fewer.
11%
Ensure that all filtering and sorting (ORDER BY) operations are on indexed fields.
17%
Use caching to store frequently accessed, infrequently updated data.
IntegrationProcedure..pdf
973.8 KB
what is Integration Procedure?
What is the difference between DataRaptor And Integration Produre?
How to Create Integration Procedure?
how use DataRator Extract Action And DataRaptor Turbo Extract?
subscribe to this Channel to get More about Omnistudio
https://t.me/salesforcevlocitydev
๐๐ฟ๐๐ฟ
What is the difference between DataRaptor And Integration Produre?
How to Create Integration Procedure?
how use DataRator Extract Action And DataRaptor Turbo Extract?
subscribe to this Channel to get More about Omnistudio
https://t.me/salesforcevlocitydev
๐๐ฟ๐๐ฟ
๐1
Salesforces Vlocity dev pinned ยซhttps://youtube.com/playlist?list=PLiy46pDBNo5i1DPinQZr_DPJqY5XD36wTยป
2- Invoke Mode: Fire and Forget โ Use instead of Use Future when the calling OmniScript must invoke
the Integration Procedure immediately
3- Invoke Mode: Non-Blocking โ Use to run the Integration Procedure immediately while continuing the
user interaction of the calling OmniScript. A response is returned when the Integration Procedure is
complete.
Follow me on youtube
join our telegram channel to learn more about vlocity
Telegram
Salesforces Vlocity dev
Salesforce videos
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
๐ฅ3
RemoteAction.pdf
1.2 MB
What Is Remote Action?
Remote actions are used to make Apex calls from Cards or OmniScripts or Integration Procedures.
Example of Remote Action
Join our telegram channel to learn more
๐๐ฟ๐๐ฟ
Remote actions are used to make Apex calls from Cards or OmniScripts or Integration Procedures.
Example of Remote Action
Join our telegram channel to learn more
๐๐ฟ๐๐ฟ
๐1
Custom OmniScript Lightning Web Components
To create a custom Lightning web component, review these component types
1- OmniScript Element Lightning web component :
Customize an OmniScript element by extending the element's Lightning web component. LWC-compatible elements display a Lightning icon in the Available Components panel of an OmniScript. Learn More
2- OmniScriptBaseMixin component:
Enable a custom component to interact with an OmniScript by extending the OmniScriptBaseMixin component. Learn More
3 - Standalone component:
A custom standalone component. The component cannot extend the OmniScriptBaseMixin component or an OmniScript element Lightning web component.
Thanks for sharing
Join our telegram channel to learn more
๐๐๐๐๐
To create a custom Lightning web component, review these component types
1- OmniScript Element Lightning web component :
Customize an OmniScript element by extending the element's Lightning web component. LWC-compatible elements display a Lightning icon in the Available Components panel of an OmniScript. Learn More
2- OmniScriptBaseMixin component:
Enable a custom component to interact with an OmniScript by extending the OmniScriptBaseMixin component. Learn More
3 - Standalone component:
A custom standalone component. The component cannot extend the OmniScriptBaseMixin component or an OmniScript element Lightning web component.
Thanks for sharing
Join our telegram channel to learn more
๐๐๐๐๐
Telegram
Salesforces Vlocity dev
Salesforce videos
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
Apex class - Remote Action - OmniScript - Lightning Web Components
1- To call Apex Method in Ligthning web component, use the method omniRemoteCall.
this is an example:
callRemoteAction() {
const params = {
input: this.omniJsonData,
sClassName:
sMethodName: "MethodName",
options: {}
}
this.omniRemoteCall(params, true).then(response => {
console.log(response, 'response');
this.datasLwc = response.result;
}).catch(error => {
console.log(error, 'error');
});
} Learn More
2- To get the Omniscript json data in lightning web component, Extend the OmniscriptBaseMixin and use the variable omniJsonData
Learn More
Thanks for sharing
Join our telegram channel to learn more
1- To call Apex Method in Ligthning web component, use the method omniRemoteCall.
this is an example:
callRemoteAction() {
const params = {
input: this.omniJsonData,
sClassName:
ClassName,sMethodName: "MethodName",
options: {}
}
this.omniRemoteCall(params, true).then(response => {
console.log(response, 'response');
this.datasLwc = response.result;
}).catch(error => {
console.log(error, 'error');
});
} Learn More
2- To get the Omniscript json data in lightning web component, Extend the OmniscriptBaseMixin and use the variable omniJsonData
Learn More
Thanks for sharing
Join our telegram channel to learn more
Telegram
Salesforces Vlocity dev
Salesforce videos
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
๐2
How to embed FlexCard inside an OmniScript
You can embed a FlexCard inside an OmniScript as a Custom LWC
1- Activate the FlexCard: After activating your FlexCard, which generates a Lightning web component to add to a Lightning or Community page, you can configure publishing options.
Note:
- The lightning Web component generated, start with โcfโ follow by the name of the FlexCard.
- All input parameters are transformed in to LWC attributes.
2- Drag a Custom LWC element from Inputs into the canvas
3- In the Lightning Web Component Name field, enter the name of a Lightning web component.
4- If the FlexCard has required parameters, you must set them in the component properties
5- Save and Activate the OmniScript
6- Click Preview to preview the OmniScript.
Thanks for sharing
Join our telegram channel to learn more
You can embed a FlexCard inside an OmniScript as a Custom LWC
1- Activate the FlexCard: After activating your FlexCard, which generates a Lightning web component to add to a Lightning or Community page, you can configure publishing options.
Note:
- The lightning Web component generated, start with โcfโ follow by the name of the FlexCard.
- All input parameters are transformed in to LWC attributes.
2- Drag a Custom LWC element from Inputs into the canvas
3- In the Lightning Web Component Name field, enter the name of a Lightning web component.
4- If the FlexCard has required parameters, you must set them in the component properties
5- Save and Activate the OmniScript
6- Click Preview to preview the OmniScript.
Thanks for sharing
Join our telegram channel to learn more
Telegram
Salesforces Vlocity dev
Salesforce videos
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
๐2
OmniScript
When using an existing OmniScript in the OmniScript Designer, create a new version of
the OmniScript to update the OmniScript's property set. Without a new version, errors may
appear in the designer
Thanks for sharing
Join our telegram channel to learn more
When using an existing OmniScript in the OmniScript Designer, create a new version of
the OmniScript to update the OmniScript's property set. Without a new version, errors may
appear in the designer
Thanks for sharing
Join our telegram channel to learn more
Telegram
Salesforces Vlocity dev
Salesforce videos
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
Type Ahead Block
1- Display a list of results when a user begins typing in an input field by using the Type Ahead Block.
2- When a user selects a record, the Type Ahead Block can retrieve additional information related to the record.
3- For example, a Type Ahead Block can be used with a DataRaptor to list Accounts in the results.
4- In the OmniScript Designer, the Type Ahead Block is located under the Groups section of Available Components. Lean More
Thanks for sharing
Join our telegram channel to learn more
1- Display a list of results when a user begins typing in an input field by using the Type Ahead Block.
2- When a user selects a record, the Type Ahead Block can retrieve additional information related to the record.
3- For example, a Type Ahead Block can be used with a DataRaptor to list Accounts in the results.
4- In the OmniScript Designer, the Type Ahead Block is located under the Groups section of Available Components. Lean More
Thanks for sharing
Join our telegram channel to learn more
Telegram
Salesforces Vlocity dev
Salesforce videos
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
image_2022-04-25_15-16-37.png
77.7 KB
Thanks for sharing
Join our telegram channel to learn more
Join our telegram channel to learn more
Add Custom Labels to Supported Fields on a FlexCard
Thanks for sharing
Join our telegram channel to learn more
Thanks for sharing
Join our telegram channel to learn more
Cache for Integration Procedures
You can use caching with Integration Procedures in three ways:
1-You can cache metadata for the entire Integration Procedure.
2-You can cache the response of the entire Integration Procedure, called top-level data.
3-You can cache the result of a specific set of steps by placing the steps inside a Cache Block. Use Cache Blocks if some parts of the Integration Procedure update data, or if you need different cached data to expire at different times
Thanks for sharing
Join our telegram channel to learn more
You can use caching with Integration Procedures in three ways:
1-You can cache metadata for the entire Integration Procedure.
2-You can cache the response of the entire Integration Procedure, called top-level data.
3-You can cache the result of a specific set of steps by placing the steps inside a Cache Block. Use Cache Blocks if some parts of the Integration Procedure update data, or if you need different cached data to expire at different times
Thanks for sharing
Join our telegram channel to learn more
Telegram
Salesforces Vlocity dev
Salesforce videos
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc
Omnistudio Studio
Industry cpq
Order management.
Salesforce marketing cloud
Salesforce admin
Salesforce developement
Salesforce integration
Salesforce Cpq
Salesforce lightning
Salesforce lwc