Query to find Form name in oracle apps
Query to find form name in oracle apps |
4 Important Tables uses in the Query to find Form name in oracle apps
1.FND_FORM_CUSTOM_RULES
2.FND_FORM
3.Fnd_Application_Tl
4.Fnd_Form_Custom_Actions
Detail Level SQL Query to find Form name in oracle apps
Select Distinct
F_TL.User_Form_Name,
F_C_RULE.Description,
F_C_RULE.Form_Name,
F_C_RULE.Enabled,
D.Application_Name,
F_CUS_ACT.Action_Type,
F_CUS_ACT.message_type,
F_CUS_ACT.message_text,
F_CUS_ACT.Enabled,
F_CUS_ACT.Object_Type
from apps.Fnd_Application_Tl D,
apps.Fnd_Form_Custom_Actions F_CUS_ACT,
apps.FND_FORM_CUSTOM_RULES F_C_RULE,
apps.FND_FORM F_FORM,
apps.FND_FORM_TL F_TL
where F_C_RULE.form_name = F_FORM.form_name
and F_C_RULE.Form_Name='XXINVDATA'
and F_C_RULE.id = F_CUS_ACT.rule_id
And F_C_RULE.Enabled = 'Y'
And F_FORM.Form_Id = F_TL.Form_Id
And F_FORM.Application_Id = D.Application_Id
and D.Application_Name = 'Purchasing'
Query to find form name in oracle apps |
0 comments:
Post a Comment