PO SQL
select poh.segment1 po单据号,
poh.creation_date,
pov.vendor_name 供应商,
--hl_po_utl_pkg.get_location_code(poh.ship_to_location_id) 收货方,
--hl_po_utl_pkg.get_location_code(poh.bill_to_location_id) 收单方,
poh.currency_code 币种,
hr_general.decode_person_name(poh.agent_id) 采购员,
po_headers_sv3.get_po_status(poh.po_header_id) 状态,
hl_po_utl_pkg.get_po_amount(poh.po_header_id, poh.currency_code) 合计,
poh.comments 摘要,
pol.line_num 编号,
po_line_types_sv.get_line_type(pol.line_type_id) 类型,
--hl_po_utl_pkg.get_item_desc(pol.item_id, pll.ship_to_organization_id) 料号,
pol.item_description 摘要,
cat.concatenated_segments 类别,
pol.unit_meas_lookup_code 单位,
pol.quantity 数量,
pol.unit_price 价格,
--hl_po_utl_pkg.format_precision(pol.quantity * unit_price,poh.currency_code) 金额,
gcc.concatenated_segments 借记账户,
pod.gl_encumbered_date gl_日期
from po_headers_all poh,
po_lines_all pol,
po_line_locations_all pll,
hr_locations_all hl,
po_distributions_all pod,
po_vendors pov,
mtl_system_items_vl mst,
mtl_categories_b_kfv cat,
gl_code_combinations_kfv gcc
where poh.po_header_id = pol.po_header_id
and pol.po_line_id = pll.po_line_id
and hl.location_id(+) = pll.ship_to_location_id
and pod.line_location_id = pll.line_location_id
and poh.vendor_id = pov.vendor_id(+)
and pol.item_id = mst.inventory_item_id(+)
and pol.org_id = mst.organization_id(+)
and pol.category_id = cat.category_id(+)
and gcc.code_combination_id(+) = pod.code_combination_id
poh.creation_date,
pov.vendor_name 供应商,
--hl_po_utl_pkg.get_location_code(poh.ship_to_location_id) 收货方,
--hl_po_utl_pkg.get_location_code(poh.bill_to_location_id) 收单方,
poh.currency_code 币种,
hr_general.decode_person_name(poh.agent_id) 采购员,
po_headers_sv3.get_po_status(poh.po_header_id) 状态,
hl_po_utl_pkg.get_po_amount(poh.po_header_id, poh.currency_code) 合计,
poh.comments 摘要,
pol.line_num 编号,
po_line_types_sv.get_line_type(pol.line_type_id) 类型,
--hl_po_utl_pkg.get_item_desc(pol.item_id, pll.ship_to_organization_id) 料号,
pol.item_description 摘要,
cat.concatenated_segments 类别,
pol.unit_meas_lookup_code 单位,
pol.quantity 数量,
pol.unit_price 价格,
--hl_po_utl_pkg.format_precision(pol.quantity * unit_price,poh.currency_code) 金额,
gcc.concatenated_segments 借记账户,
pod.gl_encumbered_date gl_日期
from po_headers_all poh,
po_lines_all pol,
po_line_locations_all pll,
hr_locations_all hl,
po_distributions_all pod,
po_vendors pov,
mtl_system_items_vl mst,
mtl_categories_b_kfv cat,
gl_code_combinations_kfv gcc
where poh.po_header_id = pol.po_header_id
and pol.po_line_id = pll.po_line_id
and hl.location_id(+) = pll.ship_to_location_id
and pod.line_location_id = pll.line_location_id
and poh.vendor_id = pov.vendor_id(+)
and pol.item_id = mst.inventory_item_id(+)
and pol.org_id = mst.organization_id(+)
and pol.category_id = cat.category_id(+)
and gcc.code_combination_id(+) = pod.code_combination_id
keim,毕业于安徽科技学院理学院,2003年开始对Web开发有浓厚的兴趣,并专注于C#/java Web开发,软件架构设计、分布式相关、项目管理、前端设计等等,实战派...