Skip to main content
Question

Missing Components in Developer Studio Project

  • March 31, 2026
  • 4 replies
  • 49 views

Forum|alt.badge.img+1

I cloned the codebase for a customer solution and the related core files through IFS LEC. When open it in the IFS Developer Studio, some components are not visible in that project.

 

But all the available components are visible in the file explorer

 

4 replies

martin.surasky
Sidekick (Customer)
Forum|alt.badge.img+9
  • Sidekick (Customer)
  • March 31, 2026

Hello ​@Pramu_V 

 

This usually means Developer Studio is filtering components at the project/solution-set level.

 

IFS Studio only shows components that are enabled for that project (components set to false are not shown in the Projects Navigator). Look in solutionset.yaml, If the missing component is disabled there, Developer Studio will hide it from the project navigator even though the folders exist on disk.

 

https://docs.ifs.com/techdocs/25r2/060_development/050_development_tools/002_developer_studio/030_reference/900_solution_set/?utm_source=chatgpt.com

 

Changing the Solution Set requires Developer Studio to re-initialize to pick up the updated component list


Forum|alt.badge.img+1
  • Author
  • Do Gooder (Partner)
  • April 1, 2026

Hi ​@martin.surasky 

Thank you for the reply. 

I tried your suggestion, but still there’s a problem. The project I cloned is a customization project, and some customizations has been done in config component. I wanted to do some modifications there. But config component is not in the solutionset.yaml file. I have attached a copy of the solutionset file here.


hamalk
Superhero (Employee)
Forum|alt.badge.img+14
  • Superhero (Employee)
  • April 2, 2026

Hi ​@Pramu_V 

 

As the documentation explains you should place the custom component in the “customComponents:” section of the solutionset yaml file and Reinitialize Solution set file using the RMB option

https://docs.ifs.com/techdocs/25r2/060_development/050_development_tools/002_developer_studio/030_reference/900_solution_set/?utm_source=chatgpt.com

 

“When a customized component needs to be included into solution set file, it has to be listed under "customComponents" section of the YAML file as shown below, while the main components are listed under the 'coreComponents' section in the YAML file.”

 


Forum|alt.badge.img+1
  • Author
  • Do Gooder (Partner)
  • April 2, 2026

Hi ​@hamalk 

Thank you