Oracle EBs Apps Blog of Mahfuz, OPM and OBIEE Consultant

Saturday, 11 July 2020

Code combination


select ACCT_CODE, count(ACCT_CODE)
 from xxgl_bal_updt fcb
having count(ACCT_CODE)>1
group by ACCT_CODE


select * from  gl_code_combinations gcc
where    gcc.segment1
       || '-'
       || gcc.segment2
       || '-'
       || gcc.segment3
       || '-'
       || gcc.segment4
       || '-'
       || gcc.segment5
       || '-'
       || gcc.segment6
       || '-'
       || gcc.segment7
       || '-'
       || gcc.segment8
       || '-'
       || gcc.segment9
       || '-'
       || gcc.segment10 ='124-000-000-0000-00000-126201-000-000-00000-00451'

No comments:

Post a Comment

OM Order Info of respective ORDER_NUMBER in R12

 SELECT ood.organization_code           org_code,          ood.organization_name           org_name,          wdd.DELIVERY_DETAIL_ID        ...