listmissingdependencies
Lists any missing dependencies in your SuiteCloud project.
Syntax
listmissingdependencies [-authid AuthId]
[-l DependencyListFileName]
[-p FolderOrZipFile]
Options
Option |
Required / Optional |
Description |
-authid |
Required |
References the custom alias you give to a specific account-role combination. |
-l |
Optional |
Specifies the missing dependency log file location as a directory path or a file name. If you specify a directory, the log file is created there by default. Missing dependency log details are added to the end of the file. |
-p |
Required when a default project has not been specified by the project command or when you want to specify a project other than the default. For more information, see project. |
References the folder or ZIP file with your SuiteCloud project. |
-h or -help |
Optional |
Prints the help for this command. |
Example
Here's a command that lists the missing dependencies in a SuiteCloud project:
sdfcli listmissingdependencies -p c:/project/ -l test.log
The command outputs a list of missing dependencies for the project located in c:/project
, and writes the list to test.log
.
When you run the command, it produces an output that is similar to the following:
SuiteCloud Development Framework CLI (com.netsuite.ide.core_2021.1.0)
Unresolved dependencies:
Feature - CUSTOMRECORDS:required
Object - customsearch51
Writing to log file C:\sdfprojects\myproject\test.log.
The output says the feature CUSTOMRECORDS
is required, so you need to enable that feature in the manifest. The object customsearch51
is a missing dependency. To fix it, add customsearch51
to the project or reference it in the manifest. The command writes the list to test.log
in the SDF CLI installation directory.
Related Topics
- SuiteCloud CLI for Java Commands
- adddependencies
- authenticate
- authenticateci
- createfile
- createproject
- deploy
- importbundle
- importconfiguration
- importfiles
- importobjects
- listbundles
- listconfiguration
- listfiles
- listobjects
- manageauth
- package
- preview
- project
- update
- updatecustomrecordwithinstances
- uploadfiles
- uploadfolders
- validate