1

To update child form lookup I need IT resource Key. Is there a SQL query for the same?

Chaitanya K
  • 1,827
  • 4
  • 32
  • 67

2 Answers2

0
select ITRESOURCE_KEY from APP_INSTANCE where APP_INSTANCE_NAME ='<AppInstanceName>'
Chaitanya K
  • 1,827
  • 4
  • 32
  • 67
0

It resources keys are stored in table of SVR.

SELECT * FROM SVR
Furkan
  • 428
  • 3
  • 5
  • 19