The data in the Top Ten List is stored in the table fnd_user_shorttop_objects. The data is read from the table during login and displayed. When the user exits, the following APIs are used: FND_SIGNON.UPDATE_NAVIGATOR updates the new TOP Ten List to the FND_USER_DESKTOP_OBJECTS table.
- SQL ViewTopTen List
- SelectFunction_name, object_name
- FromFnd_user_shorttop_objects
- WhereUser_id = & user_id
- AndResponsibility_id = & responsibility_id
- AndApplication_id = & application_id;
-
- -- Appendix: Method for searching user_id, responsibility_id, and application_id
- SELECTUser_idFROMFnd_userWHEREUser_name ='Mfg';
-
- SelectFr. application_id, fr. responsibility_id, fr. responsibility_key, frt. responsibility_name
- FromFnd_responsibility fr, fnd_responsibility_tl frt
- WhereFr. responsibility_id = frt. responsibility_id
- ANDFrt. responsibility_nameLIKE 'Manufacturing % Distribution % manager';