Happy Friday! I understand the importance on why ...
# sdf
w
Happy Friday! I understand the importance on why the dependency validation exist, but -- is there any way to ignore or skip this error if I wanted to opt to: "Details: The object reference [xxxx=xxxxxx] is missing in the project and also not included in the dependencies list." TIA
m
Not really a way to ignore the error. You can try running
suitecloud project:adddependencies
(if you have the CLI installed) or Right-click -> NetSuite -> Add dependency references to manifest (for WebStorm). Or you can add that reference manually to your
manifest.xml
file.
Copy code
<dependencies>
    <objects>
      <object>custbody_some_custom_field</object>
    </objects>
  </dependencies>
w
Yeah.. that's what I thought so too -- thanks for your time and input. Take care..