DBA Data[Home] [Help]

APPS.PQH_UTILITY dependencies on PQH_TRANSACTION_TEMPLATES

Line 1841: from pqh_transaction_templates ttl, pqh_templates tem

1837: function get_ptx_create_flag(p_position_transaction_id number) return varchar2 is
1838: l_create_flag varchar2(10);
1839: cursor c_transaction_templates(p_transaction_id number) is
1840: select create_flag
1841: from pqh_transaction_templates ttl, pqh_templates tem
1842: where ttl.template_id = tem.template_id
1843: and ttl.transaction_id = p_transaction_id
1844: and rownum<2;
1845: begin