Application to View if an task can run in WEB or CLIENT

srane

Member
I am on E1 9.0 with TR 8.98.2.3
Is there an application on E1 which will list me all applciations which only run on the WEB.

Thanks
 
I don't think there is an application but you can run the following SQL to find them:

SELECT * FROM SY812.F9860 WHERE SIANSIF = 'W'

Also, programs where SIANSIF is blank means they can run on both fat and web clients and for programs marked as 'C' it means fat client only.
 
You mean to say SELECT * FROM OL812.F9860 WHERE SIANSIF = 'W'
 
Thats correct there is no application that can tell you that.

In 8.11 and above all apps run only on the web other than those that have C in F9860.

You can run the query as suggested by cncjunior1 , but your schema would be OL812 or OL900 FOR 9.0 , if using a standard out of box config.
 
[ QUOTE ]
You mean to say SELECT * FROM OL812.F9860 WHERE SIANSIF = 'W'

[/ QUOTE ]

Yes, you are correct. We have auditors in this week and have been doing a lot of queries from the system tables today so I got SY812 on the mind I guess.
 
Back
Top