Friday, 20 January 2023

Query to find request set and its responsibility

 

SELECT FA.application_name,
       fr.responsibility_name program_attached_to,
       frg.request_group_name,
       fcp.request_set_name,
       fcp.user_request_set_name
  FROM apps.fnd_responsibility_vl   fr,
       apps.fnd_request_groups      frg,
       apps.fnd_request_group_units frgu,
       apps.fnd_request_Sets_vl     fcp,
       apps.fnd_application_vl      FA
 WHERE frg.request_group_id = fr.request_group_id
   AND frgu.request_group_id = frg.request_group_id
   AND fcp.request_set_id = frgu.request_unit_id
   AND fcp.application_id = FA.application_id
   AND upper(fcp.user_request_set_name) LIKE  UPPER(:P_REQUEST_SET_NAME);

1 comment:

  1. Honestly, I was just exploring random database topics and somehow ended up on TPointTech — and I couldn’t stop reading. The way they’ve explained Oracle Database concepts like SQL, PL/SQL, indexing, normalization, and performance tuning is actually beginner-friendly without being too basic. Most platforms either dive too deep too quickly or stay too superficial, but here the balance is just right. From understanding database architecture to writing complex queries, everything is structured in a very clear and practical way. If you're serious about mastering Oracle Database, this is genuinely a goldmine.

    ReplyDelete

How to schedule PO workflow schedule process

create or replace PACKAGE APPS.XXXX_PO_WF_SCHEDULING_PKG IS    --|==========================================================================...