You are on page 1of 3

1/13/23, 5:06 PM ADF in Depth: November 2021

‫إنشاء مدونة إلكترونية


تسجيل الدخول‬
‫المزيد‬

ADF in Depth
This Blog helps you to learn ADF
(Application Development Frame work) Oracle's new Technology and java

Thursday, 25 November 2021 Search This Blog

Search
Query to get PO tax amount against po header id
(zx_lines join with po) in oracle fusion
Home
 SELECT  Disclaimer
Terms and conditions
       sum(((nvl(zl.taxable_amt,0) *nvl(zl.tax_rate,0))/100) )tax_amount
Privacy Policy
  FROM zx_lines              zl, Cookie policy
Contact us
       po_line_locations_all pll, About us

       po_lines_all          pl,
About Me
       po_headers_all        ph
ADF in Depth
 WHERE     zl.trx_id = pll.po_header_id
Hi, I am working as ADF
Developer at Klash pvt
       AND zl.trx_line_id = pll.line_location_id
limited in Pakistan since
       AND zl.entity_code = 'PURCHASE_ORDER' 2015
View my complete profile
       AND pl.po_header_id = pll.po_header_id

       AND pl.po_line_id = pll.po_line_id Blog Archive

       AND pl.po_header_id = ph.po_header_id ► 


2022
(2)
► 

▼ 
2021
(7)
▼ 

       AND ph.po_header_id = 300000003243945 --po_headers_all.po_header_id


► 
December
(2)
► 

       order by pl.po_line_id ▼ 
November
(5)
▼ 

Query to get PO tax amount against po


header id (z...
-
November 25, 2021
No comments:

Query to get PO total amount in oracle


fusion
Query to Get Requisition creator name
Tuesday, 23 November 2021
and Po creat...

Query to get PO total amount in oracle fusion PO, CMR and XLA joins in oracle fusion
RCV ,CMR and XLA joins in oracle
fusion
 /* Formatted on 11/24/2021 11:03:32 AM (QP5 v5.294) */

SELECT SUM (NVL ( (spl.unit_price * spl.quantity), 0)) po_total_amount ► 


2019
(5)
► 

► 
2018
(1)
► 

   FROM po_headers_all sph, po_lines_all spl


► 
2017
(2)
► 

  WHERE     sph.po_header_id = spl.po_header_id ► 


2016
(17)
► 

        AND sph.type_lookup_code = 'STANDARD'


Labels
        AND sph.po_header_id = po_headers_all.po_header_id
ADF
CMR
-
November 23, 2021
No comments:

install weblogic server by cmd


Labels:
Oracle fusion Java
Location:
Lahore, Punjab, Pakistan
jave
jdeveloper

Query to Get Requisition creator name and Po creator Oracle


Oracle fusion
name in oracle fusion OracleAdf
PO
 1-To get requisition creator name 
receipt
 SELECT spn.display_name  req_creator_name Requisition
weblogic server

https://adfindepth.blogspot.com/2021/11/ 1/3
1/13/23, 5:06 PM ADF in Depth: November 2021
          FROM per_person_names_f_v spn XLA

         WHERE     POR_REQUISITION_HEADERS_ALL.preparer_id = spn.PERSON_ID(+)


Pages Followers
               AND TRUNC (SYSDATE) BETWEEN spn.EFFECTIVE_START_DATE(+)
Home )11( ‫المتابعون‬
                                       AND spn.EFFECTIVE_END_DATE(+) Oracle ADF
Java
PL/SQL
2- To get PO creator name 

SELECT spn.display_name po_creator_name

  FROM per_person_names_f_v spn

 WHERE     po_headers_all.AGENT_ID = spn.PERSON_ID(+)

       AND TRUNC (SYSDATE) BETWEEN spn.EFFECTIVE_START_DATE(+)

                               AND spn.EFFECTIVE_END_DATE(+)

           ‫متابعة‬

-
November 23, 2021
No comments:
Report Abuse
Labels:
Oracle,
Oracle fusion,
PO,
Requisition
Location:
Lahore, Punjab, Pakistan

Sunday, 21 November 2021

PO, CMR and XLA joins in oracle fusion


 SELECT a.po_line_id,

       a.PO_HEADER_ID,

       a.PO_NUMBER,

       a.VENDOR_ID,

       a.VENDOR_SITE_ID,

       a.PO_LINE_LOCATION_ID

  FROM cmr_purchase_order_dtls a, cmr_rcv_events b, poz_suppliers_v c

 WHERE b.cmr_po_distribution_id = a.cmr_po_distribution_id

   AND a.vendor_id = c.vendor_id

   AND a.active_flag = 'Y'

   AND b.accounting_event_id = xla_transaction_entities.source_id_int_1

-
November 21, 2021
No comments:

Labels:
CMR,
Oracle fusion,
PO,
XLA
Location:
Lahore, Punjab, Pakistan

RCV ,CMR and XLA joins in oracle fusion


 SELECT RSH.COMMENTS

  FROM cmr_purchase_order_dtls cpod,

       cmr_rcv_events          cre,

       CMR_TRANSACTIONS        CT,

       RCV_TRANSACTIONS        RT,

       RCV_SHIPMENT_HEADERS    RSH,

       poz_suppliers_v         ps

 WHERE     cre.cmr_po_distribution_id = cpod.cmr_po_distribution_id

       AND cpod.vendor_id = ps.vendor_id

       AND cpod.active_flag = 'Y'

https://adfindepth.blogspot.com/2021/11/ 2/3
1/13/23, 5:06 PM ADF in Depth: November 2021
       AND CRE.TRANSACTION_ID = CT.TRANSACTION_ID

       AND CT.RCV_TRANSACTION_ID = RT.TRANSACTION_ID

       AND RT.SHIPMENT_HEADER_ID = RSH.SHIPMENT_HEADER_ID

       AND RSH.RECEIPT_NUM = CT.RECEIPT_NUMBER

       AND cre.accounting_event_id = xla_transaction_entities.source_id_int_1

-
November 21, 2021
No comments:

Newer Posts Home Older Posts

Subscribe to:
Posts (Atom)

Query to get Business unit (ORGANIZATION_ID) Detail in oracle Fusion

  SELECT HAO.ORGANIZATION_ID AS BUSINESS_UNIT_ID,         HAOT.NAME,       


 HAO.BUSINESS_GROUP_ID,         HAO.EFFECTIVE_START_DATE,       ...

Groovy Examples in ADF (current date , current date and time)


Hello everyone today i will show you some Groovy Examples Note:- For this post i am
using Department and Employees tables of HR Schema ...

Programmatically Inseration in Oracle ADF


Hello everyone in this post we will learn how we can insert data programmatically for this
example i am using jdeveloper 11.1.2.3.0 and ...

Programmatically execute view criteria in ADF (With two different Approaches ) part 1
Hi everyone in this post we will see two different approaches to call the view criteria
Programmatically 1) In First Method we can execut...

Privacy Policy. Simple theme. Powered by Blogger.

https://adfindepth.blogspot.com/2021/11/ 3/3

You might also like