What cannot be deployed in Salesforce? Difference between Data and Metadata. Workarounds.

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ก.ย. 2024

ความคิดเห็น • 47

  • @anjalirathore40
    @anjalirathore40 3 ปีที่แล้ว

    What an informative Video !!! Loved how to summarized main points while explaining everything.

  • @PaulSatyajit
    @PaulSatyajit 3 ปีที่แล้ว +1

    Your teaching way is really great. Why don't you uploading video? I am new to Salesforce and found your video very helpful. Hope you will upload new videos soon.

  • @selimbalti4527
    @selimbalti4527 3 ปีที่แล้ว

    I'm starting with Salesforce, and tbh your videos are great, you should keep on doing them ! Looking forward to having a chat with you one day, as am one of your biggest funs.

  • @mrcrazylearner2005
    @mrcrazylearner2005 3 ปีที่แล้ว

    Hey apolina.. please do more videos related to Salesforce... The way you teach is really awesome..

  • @divyap3734
    @divyap3734 3 ปีที่แล้ว

    Great...from chennai

    • @naganaga9426
      @naganaga9426 3 ปีที่แล้ว

      Hi Divya are you senior Salesforce Developer

    • @divyap3734
      @divyap3734 3 ปีที่แล้ว

      @@naganaga9426 No, I am an Associate Salesforce Developer !.

    • @naganaga9426
      @naganaga9426 3 ปีที่แล้ว

      @@divyap3734 I have doughts for sfdc administration can I ask

    • @divyap3734
      @divyap3734 3 ปีที่แล้ว

      @@naganaga9426 Sure!

    • @divyap3734
      @divyap3734 3 ปีที่แล้ว

      @@naganaga9426 Are you from ? Share your LinkedIn profile or some other?

  • @manninggrinnan621
    @manninggrinnan621 2 ปีที่แล้ว

    Thanks very much, constructive thought: get a better microphone setup.

  • @alexanderbogomaz9484
    @alexanderbogomaz9484 3 ปีที่แล้ว +1

    Are Communities and Translation could be pushed to the Scratch org ?

    • @SalesforcewithPolina
      @SalesforcewithPolina  3 ปีที่แล้ว

      Good question. With communities - didn't try, but i would expect issues with them. Translations - not pushed (like deployment) but transferred via UI, sure.

    • @SalesforcewithPolina
      @SalesforcewithPolina  3 ปีที่แล้ว

      But also you reminded me that we have Object Translation metadata, if that would be enough for you then possible via push too

    • @alexanderbogomaz9484
      @alexanderbogomaz9484 3 ปีที่แล้ว

      @@SalesforcewithPolina There is a lot of stuff which occur troubles when you try to copy sandbox to scratch org by pushing retrieved metadata. Would be grate to see some tips ^_^

    • @SalesforcewithPolina
      @SalesforcewithPolina  3 ปีที่แล้ว

      True, I know. Just clean up your folders till it's deployable. I'm doing the same for each project, and don't have common rules due to differences in projects 🤷🏻‍♀️ ...

  • @vbessonow
    @vbessonow 3 ปีที่แล้ว

    how to create App, Tabs in code source? I learned about CICD. Nice, the question now is how to create an app. Before I used declarative method and then git pull

    • @SalesforcewithPolina
      @SalesforcewithPolina  3 ปีที่แล้ว

      Yep, use this approach, why not 👍🏻 you create it on UI, retrieve the metadata file and deploy it whenever needed. Can also adjust profiles to enable that app to them.

    • @vbessonow
      @vbessonow 3 ปีที่แล้ว

      @@SalesforcewithPolina sfdx force:org:pull? something like that - and pull is from sandbox where I did deployed my hello worlds lwc?

    • @SalesforcewithPolina
      @SalesforcewithPolina  3 ปีที่แล้ว +1

      yes, so you create smth on org then
      -> use command "sfdx force:source:pull -f" to retrieve all changes or I ususally use "sfdx force:source:retrieve -m 'StandardValueSet:AccountType, CustomField:Opportunity.Budget_Confirmed__c' " with listing concrete metadata I need (metadata list you can find here developer.aliyun.com/mirror/npm/package/sfdx-retrieve-deploy-companion/v/1.0.1)
      -> and then commit these local files to teh repository or deploy to another org with "sfdx force:source:push" (but be careful, it will deploy the whole source)

    • @vbessonow
      @vbessonow 3 ปีที่แล้ว

      is there another way to do the same declaratively? without extra plugging?
      I created in my sandbox app, tabs, and then pulled them. when tried to push them back I got lots of strange errors related to privileges.
      The idea it looks like I got it.
      1) Create your metadata (in my cases new custom objects, app, tabs)
      2) pull them from the org where they were created, save, commit
      3) push - it shall deploy metadata into Sandbox that was set up in the CICD pipeline.
      Polina. Can you recommend to me some good compact resources about salesforce?
      github.com/VladimirBessonov/ComponentManager -
      I am not a full-time salesforce developer, I just do it for in-house use.
      I had also troubles figuring out how to store the configs as static resources on the server-side (as JSON for example) and work with it later. I did such a weird data structure to save the data in classes.

    • @vbessonow
      @vbessonow 3 ปีที่แล้ว

      @@SalesforcewithPolina Is it possible to retrieve App and Tabs from Sandbox ? can app and tabs be created in the same Sandbox that is used in CICD pipeline?
      I cannot find how to do the retrieve? sfdx force:source:retrieve -m "AppName, TabName"?