Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 rsolanki 1
/* Applications List*/
2
SELECT 'Application_Default.asp' AS file_name,
3
	   'IMG_DISK' AS item_image,
4
	   app.APP_ID AS item_id,
5
	   app.APPLICATION_NAME AS item_name,
6
	   'app_id='|| app.app_id AS param
7
  FROM APPLICATIONS app
8
ORDER BY UPPER(app.APPLICATION_NAME)  
9