Query to check vacation rule in oracle apps
SELECT
wfrr.rule_id,
wfrr.message_type,
wfrr.message_name,
wfrr.begin_date,
wfrr.end_date,
wfrr.action,
wfrr.action_argument,
witv.display_name ,
wfmv.display_name,
wfmv.subject,
wfl.meaning ,
witv.name,
wfmv.TYPE,
wfmv.name ,
wfl.lookup_type,
wfl.lookup_code
FROM
apps.wf_routing_rules wfrr,
apps.wf_item_types_vl witv,
apps.wf_messages_vl wfmv,
apps.wf_lookups wfl
WHERE 1=1
AND wfrr.message_type = witv.name (+)
AND wfrr.message_type = wfmv.TYPE (+)
AND wfrr.message_name = wfmv.name (+)
AND wfrr.action = wfl.lookup_code
AND wfl.lookup_type = 'WFSTD_ROUTING_ACTIONS'
AND wfrr.end_date IS NULL
AND wfrr.message_type IN ('POAPPRV','REQAPPRV','APINV','APEXP','APCCARD')
--and wfrr.action_argument in ('JCENA','MCGEY')
ORDER BY begin_date;
This blog is for Oracle Ebs, Fusion and OIC Techno- Functional People. I am sharing my work experience through this blog.
Tuesday, 5 September 2017
Query to check vacation rule in oracle apps
Subscribe to:
Post Comments (Atom)
Oracle Fusion SQL Queries to get Sales Person/Sales Representative information for an Order
1) Get sales person details if the Sales Person ID is known SELECT jrs.SALESREP_NUMBER , jrs.status , jrs.START_...
-
P2P CYCLE: INVENTORY=> REQUIESTITION=> RFQ=> QUOTATION=> QUOTATION ANALYSIS=> PURCHASE ORDER =>...
-
Order to Cash (O2C) Cycle with in Oracle Apps Enter the Sales Order Book the Sales Order Launch Pick Release Ship Confirm Create In...
-
---------- 1) Below given query can be used TO get concatenated Gl code combinations segment AND its description USING API GL_FLEXFIELDS_PK...
No comments:
Post a Comment