DBA Data[Home] [Help]

APPS.ASO_QUOTE_PUB_W dependencies on ASO_TAX_DETAILS

Line 14281: FROM ASO_TAX_DETAILS

14277: tax_code,
14278: tax_rate,
14279: tax_inclusive_flag,
14280: tax_amount
14281: FROM ASO_TAX_DETAILS
14282: WHERE quote_line_id = p_quote_line_id
14283: ;
14284:
14285: /* declare a cursor to retrieve header-level tax detail per tax code */

Line 14293: ASO_TAX_DETAILS atd

14289: atd.tax_inclusive_flag tax_inclusive_flag,
14290: SUM(NVL(atd.tax_amount, 0) *
14291: DECODE(aql.line_category_code, 'RETURN', -1, 1)) tax_amount
14292: FROM ASO_QUOTE_LINES_ALL aql,
14293: ASO_TAX_DETAILS atd
14294: WHERE aql.quote_line_id = atd.quote_line_id
14295: AND aql.quote_header_id = p_quote_header_id
14296: GROUP BY
14297: atd.tax_code,