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
  • 6 replies
  • 49 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

6 replies

Tharshan SM
Sidekick (Customer)
Forum|alt.badge.img+6
  • 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')

 

 


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

Hi Tharshan ​@Tharshan SM I deleted two buttons which I don't want to replicate into test environment, But since the page is not published I could still see the buttons and they executes with the prod functionality, Is there any way through the database which we can re publish the page? 

 

after deleting from database the commands buttons are still visible like this in the page designer

 

 


  • May 13, 2026

If you go to the very bottom of Page Designer panel, to “All Elements”, there you can remove the commands permanently.

 

 


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

Hi ​@karale  thanks for the info I am aware of this, I need to do this from the database by a script. Do you know where these all elements are saved in the db?


  • May 13, 2026

Hi ​@karale  thanks for the info I am aware of this, I need to do this from the database by a script. Do you know where these all elements are saved in the db?

If you remove them, then save/publish the page they will be gone. Are you not able to publish the page for some reason?


E.g. before deletion:


After deleting the button and the Command and publishing the page: