Skip to main content
Solved

In which table in db can I find the data related to Command Buttons in for a specific window?

  • April 29, 2026
  • 2 replies
  • 33 views

ashenfdo
Sidekick (Customer)
Forum|alt.badge.img+8

I need to find the table name where I can find the data related to command buttons in IFS cloud.

 

 

Best answer by Tharshan SM

Hi ​@ashenfdo,

The ModelDesign entity contains most of the page designer related data that you can explore. More specifically you can check the FND_MODEL_DESIGN_DATA table to view the command, group and list configurations.

 

Regards

2 replies

Tharshan SM
Sidekick (Customer)
Forum|alt.badge.img+5
  • Sidekick (Customer)
  • Answer
  • April 30, 2026

Hi ​@ashenfdo,

The ModelDesign entity contains most of the page designer related data that you can explore. More specifically you can check the FND_MODEL_DESIGN_DATA table to view the command, group and list configurations.

 

Regards


ashenfdo
Sidekick (Customer)
Forum|alt.badge.img+8
  • Author
  • Sidekick (Customer)
  • April 30, 2026

@Tharshan SM  Thanks a lot I was able to find the command button information from DB. 

 

Something to add here when search use the Name for the query

 


SELECT *
FROM FND_MODEL_DESIGN_DATA
WHERE ARTIFACT = 'command'
  AND NAME in( 'CPEGEN_Form_NavigateTo_Create_Supplier_for_HPBB','CPEGEN_Form_NavigateTo_Create_Supplier_for_HPBE')