if we have multiple end points setup in the remote sites then how will be the call done to a specific end point?
@ali1hashmi2 жыл бұрын
so its typically what an object is in Javascript
@bhavanipraneeth7472 жыл бұрын
Please explain how to iterate this map….
@JD-ju7cd2 жыл бұрын
Thanks man, this was helpful.
@suppr_duppr2 жыл бұрын
wow .. plz make more videos on Salesforce!
@ragshavlogs18512 жыл бұрын
Thank you sir., Understood about wrapper class clearly., Please please please., Make more videos on Apex Development like triggers etc.,
@sunshinesalesforcelearning32392 жыл бұрын
Sure will do that…
@roysan8962 жыл бұрын
This will not work...what if i need to select only 1 of 3 ..and next time while update i need to select 2 of 3... how you will counter that.....? i think we need to use custom approach.
@sunshinesalesforcelearning32392 жыл бұрын
If you need dynamic values to apply, you have to put multiple conditions and add values accordingly
@anuishwarya66012 жыл бұрын
I want to display 3 employee details (name,age,salary,exp)using wrapper class without using get or set. Could you help me on this
@sunshinesalesforcelearning32392 жыл бұрын
Hi Anu, get and set are used to assign values and read values from a variable. Without that you cannot do it.
@laxmihotkar31992 жыл бұрын
please make a video on mapping a csv file data to the custom object in lwc
@praveenbehera13072 жыл бұрын
Thank you. Finally I understood the concept.
@manasareddy26722 жыл бұрын
Awesome explanation!
@shivameswarom2 жыл бұрын
bro do new videos
@pratibhajamdade16532 жыл бұрын
using wrapper how to save records in lwc
@kraghuramprasad2 жыл бұрын
thank you Suraj.. you made it very simple.
@glennpavel48003 жыл бұрын
very handy! great job.
@priyankarani75513 жыл бұрын
plz tell which address give in URI Mapping?
@funwithsnippets58433 жыл бұрын
Java #Shorts to have fun with kzbin.info/www/bejne/f3akhn1ogqeDoqs
@chetsboy13 жыл бұрын
Thanks man u r perfect
@TheCloud_Coder3 жыл бұрын
kitna habas , thoda acting kam karna tha... hahaa
@futureproof39623 жыл бұрын
Thanks for the explanation. It helped to understand. Few things I didn't like: 1. The example is stupid. I just hate people who are not serious with serious business 2. You are trying to be over smart which you are actually not. Suggestion: Please try to be yourself (and do not to over acting) in your upcoming videos. May be due to these reasons you have only 16k views in 3 yrs and subscriber below 1k. Like I'm not subscribing the channel due to above reasons.
@dineshbaddawar81513 жыл бұрын
can you explain without using set & get method..?
@harikapotham34653 жыл бұрын
Thanks a lot for making such a wonderful video for learning application events in a simple way..
@isteyakhussain64303 жыл бұрын
Sir need a example of map where we check contain key and check if key is available or not when we use set and map both on one trigger or class
@suppr-duppr3 жыл бұрын
Great Video .. thx helped me .. great Trainer you are .. Sunny. Leone .. good one! ... SFDC DEVPLR ..
@asifsaif92443 жыл бұрын
Duplicate value found : duplicate value on record with ID
@asifsaif92443 жыл бұрын
How to fix this error ?
@erickmori84343 жыл бұрын
Thanks man! excellent video and as I'm Brazilian the subtitle helps a lot.
@suppr-duppr3 жыл бұрын
You are so good!... you made learning Fun ... wow .. hats off! ... please make more videos .. wow I am a Fan!
@sunshinesalesforcelearning32393 жыл бұрын
Thank you
@nimmasoda3 жыл бұрын
Hi, Please share your website or Blog name. Your explanation is too good... I would like to learn Salesforce concepts from your video's/writings. Thankyou
@syedmoizuddin7933 жыл бұрын
what's your blog address
@sunshinesalesforcelearning32393 жыл бұрын
It’s under maintenance, will activate soon
@onefourfour54583 жыл бұрын
What Data Structures are you pertaining to? What Data Structures are allowed to?
@chiragkripalani23403 жыл бұрын
Great channel.Alas, very few videos. Pls make new videos ranging from integration to lightning. Eager to learn from you :)
@ShivaKumar-bm4di3 жыл бұрын
serusly u has great explaining skills mate, thank u so much for the video one of the best <3
@chithraprakash22713 жыл бұрын
Thank you for this video. Very well explained. Nice of you to show the visual representation of map list. Please upload more videos
@auranansari20734 жыл бұрын
Where is your blog url ???
@sunshinesalesforcelearning32394 жыл бұрын
It’s not yet active, still in process enhancement
@bhimakumarbadiger47644 жыл бұрын
Really nice explaination..
@sandeepchirra17264 жыл бұрын
Do we not need Auth code or access token in workbench??
@sunshinesalesforcelearning32394 жыл бұрын
No
@architjain44664 жыл бұрын
It’s very very basic. Need a session with a bit advanced concepts using sobjects, cross object mapping etc.
@sunshinesalesforcelearning32394 жыл бұрын
Sure will upload them soon
@vrushaliwaikar63344 жыл бұрын
Thank you Sir, Your video help me to understand the concept of wrapper and its example.Such a best video
@sunshinesalesforcelearning32394 жыл бұрын
Thank you
@chithraprakash22714 жыл бұрын
Can you make videos on lightning component with map, set concepts
@sunshinesalesforcelearning32394 жыл бұрын
Yep will do it
@chithraprakash22714 жыл бұрын
You explain the concepts very clearly. Very helpful video. Thank you. Looking forward for more on all topics like Process builder, flow.
@chithraprakash22714 жыл бұрын
Please post more videos.
@chithraprakash22714 жыл бұрын
Thank you for a great video
@pallamadanmohan4 жыл бұрын
global with sharing class PriceBookentry2 { global class pricebookentryWrapper{ webservice product2 productid; webservice pricebook2 pricebookid; webservice double unitprice; } global class productWrapper{ webservice String productName; webservice boolean isActive; webservice String ProductCode; webservice String type; webservice String category; webservice Double price; } global class pricebookWrapper{ webservice String pricebookName; webservice boolean isActive;} webservice static List<productWrapper> createProductPricebookPricebookEntry(List<productWrapper> productWrapperr,List<pricebookWrapper> pricebookWrapperr,List<pricebookentryWrapper> pricebookentryWrapperr){ List<Product2> productsList=new List<Product2>(); for(productWrapper product:productWrapperr){ Product2 products =new Product2(); products.name=product.productName; products.Product_Type__c= product.type; products.Product_Category__c= product.category; products.Product_Price__c=product.price; products.IsActive=true; productsList.add(products);} List<Pricebook2> priceBooks = new List<Pricebook2>(); for(pricebookWrapper pricebook:pricebookWrapperr){ Pricebook2 pricebookss=new Pricebook2(); pricebookss.name=pricebook.pricebookName; pricebookss.IsActive=true;} Map<Product2,Pricebook2> ProductAndPricebookIDs=new Map<Product2,Pricebook2> (); product2 productIDs=[select id from product2 WHERE CreatedDate >:Datetime.now().addMinutes(-15)]; pricebook2 pricebookIDs=[select id from Pricebook2 WHERE CreatedDate >:Datetime.now().addMinutes(-15)]; ProductAndPricebookIDs.put(productIDs,pricebookIDs ); List<PricebookEntry> priceBookEntries = new List<PricebookEntry>(); for(Map<Product2,Pricebook2> eachproductAndPricebook:ProductAndPricebookIDs){ PricebookEntry pbe=new PricebookEntry(); pbe.Pricebook2Id=eachproductAndPricebook.k pbe.Product2Id=pricebookentry.productid; pbe.UnitPrice=pricebookentry.unitprice; } } } How to iterate product ids and pricebook ids and set to pricebookentry.and how to give end user unit price values in pricebook entry??????
@iam-arshadB4 жыл бұрын
Came here by looking at the thumbnail and assuming its an official salesforce developers channel. But in the end,got the right one :)
@12mauro4 жыл бұрын
Gracias!
@RanaArunodayaSingh4 жыл бұрын
please make one video on nested map concept for how to insert and fetch values from nested map ! It will be helpfull.
@sunshinesalesforcelearning32394 жыл бұрын
Thanks for input my dear. Let me upload that soon
@RanaArunodayaSingh4 жыл бұрын
you have excellent way of explanation. Please keep posting and create a tutorials for Apex, Lightning
@madanmohan82114 жыл бұрын
{here is my apex class}:--global with sharing class ProductProject { webservice static List<Product2> create(List<ProductEntity> productEntityList){ List<Product2> productsList=new List<Product2>(); for(ProductEntity proEntity:productEntityList){ Product2 product =new Product2(); product.name=proEntity.name; product.Product_Type__c= proEntity.type; product.Product_Category__c= proEntity.category; product.Product_Price__c=proEntity.price; productsList.add(product); } if(productsList.size()>0){ insert productsList; } return productsList; } } ----------------------------------------------------------------------------------------------------------------------- <Here is my wrapper class>------- global class ProductEntity { public String name{get;set;} public String type{get;set;} public String category{get;set;} public Decimal price{get;set;} } ------------------------------------------------------------------------------------------------------------------- from the above apex class generated wsdl file and created new project on soap UI tool, added wsdl file to it.when i run on the play button,this im getting.but dont know where to pass values.can u pls hlp here if possible .Thanks. <soapenv:Envelope xmlns:soapenv="schemas.xmlsoap.org/soap/envelope/" xmlns:prod="soap.sforce.com/schemas/class/ProductProject"> <soapenv:Header> <prod:SessionHeader> <prod:sessionId>RvhYJp3mkY819ZP53aNfpg.6EEKp5r41.</prod:sessionId> </prod:SessionHeader> </soapenv:Header> <soapenv:Body> <prod:create > <!--Zero or more repetitions:--> <prod:productEntityList/> </prod:create> </soapenv:Body> </soapenv:Envelope>
@rosendorg10194 жыл бұрын
Podrías apoyarme en un proyecto de mandar un json?