BI_LINE_TAX_VW

(SQL View)
Index Back

Bill Line Tax Calculation View


select line.business_unit, line.invoice, line.line_seq_num, line.tax_cd, taxauth.tax_pct, taxauth.tax_authority_cd from PS_BI_LINE line, ps_tax_cd tax, ps_tax_authority taxauth where tax.setid = (select DISTINCT setid from ps_set_cntrl_rec where setcntrlvalue = line.business_unit and recname = 'TAX_CD') and taxauth.setid = tax.setid and tax.tax_authority_cd = taxauth.tax_authority_cd and line.tax_cd = tax.tax_cd and taxauth.effdt = (select max(effdt) from ps_tax_authority where setid = taxauth.setid and tax_authority_cd = taxauth.tax_authority_cd and effdt <= %currentdatein) and taxauth.eff_status = 'A'

# PeopleSoft Field Name PeopleSoft Field Type Database Column Type Description
1 BUSINESS_UNIT Character(5) VARCHAR2(5) NOT NULL Business Unit
2 INVOICE Character(22) VARCHAR2(22) NOT NULL Invoice
3 LINE_SEQ_NUM Number(5,0) INTEGER NOT NULL Sequence
4 TAX_CD Character(8) VARCHAR2(8) NOT NULL Tax Code
5 TAX_PCT Number(7,4) DECIMAL(6,4) NOT NULL Tax Percent
6 TAX_AUTHORITY_CD Character(3) VARCHAR2(3) NOT NULL Tax Authority