• Steferd liswe
  • NEWBIE
  • 0 Points
  • Member since 2023

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 3
    Replies

Hello,

Hope all is well. I'm having troubles visualizing related-list records on Experience Builde page. It shows in Salesforce record page. I made sure object share settings were the correct ones to be able to access all necessary objects (page profile having access and correct page layout).

correct visualization of related list in salesforceNo related-list records in experience builder page.Config of related-list in experience builder page.

Hey,

So we are working on creating a CI pipeline in our org when developing new stuff. Problem is that whenever we create a Scratch Org that the pipeline is supposed to run against the Scratch Org is scratched as the name implies, fair enough we can get define the Scratch Org to contain what we need when creating it we are past that now, meaning we know now that we have to install all 3rd party packages and whatever we use manually by running "sfdx package install ..." Anyway once packages and so on are installed we want to do a "sfdx project deploy start --target-org test-somerandomid@example.com -d force-app" This is where we have the problem at hand right now.

So everytime we do this we are getting hundreds of errors like Custom Fields not existing Global Value Set not able to be resolved and so on. The only way to get rid of these errors are to deploy each Custom Field etc. individually so ex:

sfdx force source deploy -p force-app/main/default/objects/Lead/fields/Deleted__c.field-meta.xml --target-org test-somerandomid@example.com

this deploy of the Custom Field removes all the errors related to that field in the deploy of "force-app" as the root of the deployment. but this means that we need to do this for hundreds of custom fields, global set etc. This is not optimal. How come that

deploy force-app

does not see that all the custom stuff is contained within the deploy?
  • June 05, 2023
  • Like
  • 0