Pages

Saturday, March 17, 2012

TO FIND FOLDERS DETAILS

   Note: Here the NAME is completely case sensitive and hence needs to be passed
as defined in FOLDER:

SELECT folder_id,
object,
name,
public_flag,
autoquery_flag,
where_clause,
order_by
FROM fnd_folders
WHERE name like '%&name%';.

1 comment:

  1. SELECT b.application_short_name,
    d.responsibility_name,
    a.OBJECT,
    c.NAME Folder_Name
    FROM apps.fnd_default_folders a,
    apps.fnd_application b,
    apps.fnd_folders c,
    apps.fnd_responsibility_vl d
    WHERE a.application_id = b.application_id
    AND a.folder_id = c.folder_id
    AND d.responsibility_id = - (a.user_id)
    AND d.responsibility_name LIKE '%%'
    ORDER BY b.application_short_name,
    d.responsibility_name;

    ReplyDelete