Тёмный
SALESFORCE AGENT
SALESFORCE AGENT
SALESFORCE AGENT
Подписаться
Welcome to SALESFORCE AGENT,
Here you'll find a showcase of new Modules, Trails, and Projects from Salesforce.
Subscribe to our RU-vid channel to get the latest videos.

24/7 Support Help Available ✅
- Trailhead Help ✅
- Certification Voucher Help ✅
- Certification Dumps Help ✅

Message me on instagram for help related queries
👇🏻
Instagram - sal.esforceagent
Email - salesforceagent2@gmail.com

- SALESFORCE AGENT
Thanks & regards.
Einstein Copilot Basics | Salesforce Trailhead
2:33
6 месяцев назад
Комментарии
@ANUJSAINI-q5h
@ANUJSAINI-q5h 10 дней назад
Updated HTML: <template> <lightning-card title="Boat Browser"> <div class="slds-var-p-horizontal_medium"> <div class="slds-var-m-bottom_medium"> <lightning-record-picker label="Browse our inventory" placeholder="Search by boat name or type" object-api-name="Boat__c" display-info={displayInfo} matching-info={matchingInfo} onchange={handleChange} > </lightning-record-picker> </div> <div lwc:if={showBoat}> <div class="tile slds-var-m-vertical_medium" > <div style={backgroundStyle} class="tile"></div> </div> <div class="slds-text-heading_medium slds-border_bottom slds-var-m-bottom_medium">{boatName}</div> <div>Captain: {boatOwner}</div> <p>Price: <lightning-formatted-number maximum-fraction-digits="0" value={boatPrice} format-style="currency" currency-code="USD"></lightning-formatted-number></p> <div>Type: {boatType}</div> </div> </div> </lightning-card> </template> JS import { LightningElement, wire } from 'lwc'; import { getRecord, getFieldValue } from 'lightning/uiRecordApi'; import BOAT_PICTURE_FIELD from "@salesforce/schema/Boat__c.Picture__c"; import BOAT_NAME_FIELD from "@salesforce/schema/Boat__c.Name"; import BOAT_OWNER_FIELD from "@salesforce/schema/Boat__c.Contact__r.Name"; import BOAT_PRICE_FIELD from "@salesforce/schema/Boat__c.Price__c"; import BOAT_TYPE_FIELD from "@salesforce/schema/Boat__c.BoatType__r.Name"; const BOAT_FIELDS = [BOAT_PICTURE_FIELD, BOAT_NAME_FIELD,BOAT_OWNER_FIELD, BOAT_PRICE_FIELD, BOAT_TYPE_FIELD]; export default class Boats extends LightningElement { boatId; displayInfo = { primaryField: 'Name', additionalFields: ['BoatType__r.Name'], }; matchingInfo = { primaryField: {fieldPath: 'Name'}, additionalFields: [{fieldPath:'BoatType__r.Name'}], }; handleChange(event){ this.boatId = event.detail.recordId; } get showBoat() { return this.boatId != null; } @wire(getRecord, { recordId: '$boatId', fields: BOAT_FIELDS }) boatDetail; // BEGIN GETTERS FOR BOAT FIELDS get boatPicture() { return getFieldValue(this.boatDetail.data, BOAT_PICTURE_FIELD); } get boatName() { return getFieldValue(this.boatDetail.data, BOAT_NAME_FIELD); } get boatOwner() { return getFieldValue(this.boatDetail.data, BOAT_OWNER_FIELD); } get boatPrice() { return getFieldValue(this.boatDetail.data, BOAT_PRICE_FIELD); } get boatType() { return getFieldValue(this.boatDetail.data, BOAT_TYPE_FIELD); } // END GETTERS FOR BOAT FIELDS get backgroundStyle() { if (!this.showBoat) { return ''; } else { return `background-image:url('${this.boatPicture}')`; } } } XML: <?xml version="1.0"?> <LightningComponentBundle xmlns="soap.sforce.com/2006/04/metadata"> <apiVersion>60.0</apiVersion> <isExposed>true</isExposed> <targets> <target>lightning__AppPage</target> <target>lightning__HomePage</target> <target>lightning__RecordPage</target> </targets> </LightningComponentBundle> CSS: .tile { width: 100%; height: 220px; padding: 1px !important; background-position: center; background-size: cover; border-radius: 5px; }
@ANUJSAINI-q5h
@ANUJSAINI-q5h 10 дней назад
Boat_c = Boat__c BoatType_r = BoatType__r
@lovejones1897
@lovejones1897 11 дней назад
It keeps saying it does not find user in test user in the username and test user in alias
@ashwinimeshram4623
@ashwinimeshram4623 13 дней назад
its show this error "force-app\main\default\lwc\boatPicker\boatPicker.js Invalid reference Boat_c.BoatType_r.Name of type sobjectClass in file boatPicker.js Invalid reference Boat_c.Contact_r.Name of type sobjectClass in file boatPicker.js"
@AnisInAction
@AnisInAction 11 дней назад
Above failing lines needs to be corrected to have double underscore in the api names of the object, it's a copy paste error
@pswati7742
@pswati7742 10 дней назад
Please download the Boat__c, BoatReview__c, BoatType__c, Contact objects from Org Browser in VS code and try to deploy again
@salesforceagent
@salesforceagent 16 дней назад
Task - 3 boatPicker.html ------------------------- <template> <lightning-card title="Boat Browser"> <div class="slds-var-p-horizontal_medium"> <div class="slds-var-m-bottom_medium"> <lightning-record-picker label="Browse our inventory" placeholder="Search by boat name or type" object-api-name="Boat__c" display-info={displayInfo} matching-info={matchingInfo} onchange={handleChange} > </lightning-record-picker> </div> <div lwc:if={showBoat}> <div class="tile slds-var-m-vertical_medium" > <div style={backgroundStyle} class="tile"></div> </div> <div class="slds-text-heading_medium slds-border_bottom slds-var-m-bottom_medium">{boatName}</div> <div>Captain: {boatOwner}</div> <p>Price: <lightning-formatted-number maximum-fraction-digits="0" value={boatPrice} format-style="currency" currency-code="USD"></lightning-formatted-number></p> <div>Type: {boatType}</div> </div> </div> </lightning-card> </template> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> boatPicker.js -------------------- import { LightningElement, wire } from 'lwc'; import { getRecord, getFieldValue } from 'lightning/uiRecordApi'; import BOAT_PICTURE_FIELD from "@salesforce/schema/Boat__c.Picture__c"; import BOAT_NAME_FIELD from "@salesforce/schema/Boat__c.Name"; import BOAT_OWNER_FIELD from "@salesforce/schema/Boat__c.Contact__r.Name"; import BOAT_PRICE_FIELD from "@salesforce/schema/Boat__c.Price__c"; import BOAT_TYPE_FIELD from "@salesforce/schema/Boat__c.BoatType__r.Name"; const BOAT_FIELDS = [BOAT_PICTURE_FIELD, BOAT_NAME_FIELD,BOAT_OWNER_FIELD, BOAT_PRICE_FIELD, BOAT_TYPE_FIELD]; export default class Boats extends LightningElement { boatId; displayInfo = { primaryField: 'Name', additionalFields: ['BoatType__r.Name'], }; matchingInfo = { primaryField: {fieldPath: 'Name'}, additionalFields: [{fieldPath:'BoatType__r.Name'}], }; handleChange(event){ this.boatId = event.detail.recordId; } get showBoat() { return this.boatId != null; } @wire(getRecord, { recordId: '$boatId', fields: BOAT_FIELDS }) boatDetail; // BEGIN GETTERS FOR BOAT FIELDS get boatPicture() { return getFieldValue(this.boatDetail.data, BOAT_PICTURE_FIELD); } get boatName() { return getFieldValue(this.boatDetail.data, BOAT_NAME_FIELD); } get boatOwner() { return getFieldValue(this.boatDetail.data, BOAT_OWNER_FIELD); } get boatPrice() { return getFieldValue(this.boatDetail.data, BOAT_PRICE_FIELD); } get boatType() { return getFieldValue(this.boatDetail.data, BOAT_TYPE_FIELD); } // END GETTERS FOR BOAT FIELDS get backgroundStyle() { if (!this.showBoat) { return ''; } else { return `background-image:url('${this.boatPicture}')`; } } }
@aarzoonawabsyed7084
@aarzoonawabsyed7084 18 дней назад
I am getting an 404 page not found error when i gave a click on LAUNCH for hands on for SOQL what can I do ?
@SuchitaRawat-h2j
@SuchitaRawat-h2j 19 дней назад
error- We found the 'Create_1500_Opp_Product' element in the latest version of the flow. Plz help me resolve this
@sushmasushma1477
@sushmasushma1477 Месяц назад
Thank you so much!
@ayanpalit5083
@ayanpalit5083 Месяц назад
I'm facing "we can't find the" sales user' permissions set group assigned to the 'test user' where i have already assigned test user still this coming please help me
@salesforceagent
@salesforceagent Месяц назад
@@ayanpalit5083 message me on Instagram with screenshots.
@jinhwanisnotshort5272
@jinhwanisnotshort5272 Месяц назад
We can't find an Autolaunched Flow named 'Convert to Customer. Make sure you saved the flow with 'Convert_to_Customer' as the API Name. Please help me with this
@i-07subhajitmaity80
@i-07subhajitmaity80 Месяц назад
Thank you so much sir !!!
@RishithaSannapureddy
@RishithaSannapureddy Месяц назад
In the 'Create 1500 Opp Product' element, we can’t find the input value for 'ProductKW' set to '1500'. If you selected 'X1500kW', delete it, type '1500', and then click outside the field. fix my error
@sheebaprakash2384
@sheebaprakash2384 2 месяца назад
IN THE API NAME CAN'T ABLE TO ADD NAME THAT SHOWING IT SHOULD BE CHAR
@nidhidhanore4931
@nidhidhanore4931 2 месяца назад
I am getting error API name you entered already in use please help in fixing this
@user-hl1fe2eq5c
@user-hl1fe2eq5c 2 месяца назад
❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉❤🎉
@bangtamizami1
@bangtamizami1 2 месяца назад
You have to challenge yourself to be consistent -CR7
@hardikgurung6027
@hardikgurung6027 2 месяца назад
@mettupallisankeerth1100
@mettupallisankeerth1100 2 месяца назад
bc
@karlapudisunitha4107
@karlapudisunitha4107 2 месяца назад
It is really great and it is real thing What he said fat people can dance
@MANJEETSINGH-pf9lt
@MANJEETSINGH-pf9lt 2 месяца назад
Mere pass paisa to nahi hai par meri ladli pyari mata rani or bhole baba ka saath hai ab inse bada dhan or kya hai is maya rupi sansaar me maroge to bhakti ke alawa or kuch nahi jaayega saath yahi rah jaauega aapka ye dhan doulat rutba sab kuch to paiso ke piche nahi bhakti ke piche bhago kyo ki isse bada dhan or koyi nahi hai jay shiv shankar sambhu narayan
@Animadda98
@Animadda98 2 месяца назад
Start up❌ Thale wala✅
@votecore
@votecore 2 месяца назад
Ek Din Hospital jak kar dekh to pata chale😮
@findjoselyn
@findjoselyn 2 месяца назад
Whew! Thank you!
@piyushtiwari334
@piyushtiwari334 2 месяца назад
But you are still not on top
@deepuedalada440
@deepuedalada440 2 месяца назад
contribution is real happiness.recharge karo nd call people who r in need
@girishkumar5220
@girishkumar5220 2 месяца назад
👍👍👍
@ShaivaTechie
@ShaivaTechie 2 месяца назад
Awesome...True
@vikkyji9960
@vikkyji9960 2 месяца назад
Kya bat ha sir jii
@user-wc3oh3kb8h
@user-wc3oh3kb8h 2 месяца назад
Great thanks sir ji ❤
@rishithrao221
@rishithrao221 2 месяца назад
1) BBC 2) ACC 3) CBA 4) DBABB
@rashmijhanwarjaju4604
@rashmijhanwarjaju4604 2 месяца назад
So true
@user-og3jp9cq6y
@user-og3jp9cq6y 2 месяца назад
good
@armghanbabar7669
@armghanbabar7669 2 месяца назад
amigo ... think like a jew n expand your fathers' legacy to a next level ...
@user-yh3jg5xz7p
@user-yh3jg5xz7p 3 месяца назад
💯 sure
@aquibmubeen1840
@aquibmubeen1840 3 месяца назад
Jb apny dukh dety han tu waqt nahen katta ha