DBA Data[Home] [Help]

APPS.IBY_EXTRACTGEN_PVT dependencies on PO_VENDORS

Line 725: ELSIF p_entity_table = G_DFF_PO_VENDORS THEN

721: INTO l_attribute_category
722: FROM IBY_PMT_INSTR_USES_ALL
723: WHERE instrument_payment_use_id = p_entity_id;
724:
725: ELSIF p_entity_table = G_DFF_PO_VENDORS THEN
726: l_num_of_attributes := 15;
727: l_from_clause := ' From ' || p_entity_table;
728: l_where_clause := ' Where VENDOR_ID = :p_entity_id ';
729: SELECT attribute_category

Line 731: FROM PO_VENDORS

727: l_from_clause := ' From ' || p_entity_table;
728: l_where_clause := ' Where VENDOR_ID = :p_entity_id ';
729: SELECT attribute_category
730: INTO l_attribute_category
731: FROM PO_VENDORS
732: WHERE VENDOR_ID = p_entity_id;
733:
734: ELSIF p_entity_table = G_DFF_PO_VENDOR_SITES THEN
735: l_num_of_attributes := 15;

Line 837: or p_entity_table = G_DFF_PO_VENDORS

833: or p_entity_table = G_DFF_LEGAL_ENTITY
834: or p_entity_table = G_DFF_PARTY
835: or p_entity_table = G_DFF_INT_BANK_ACCOUNT
836: or p_entity_table = G_DFF_EXT_BANK_ACCOUNT
837: or p_entity_table = G_DFF_PO_VENDORS
838: or p_entity_table = G_DFF_PO_VENDOR_SITES
839: or p_entity_table = G_DFF_PMT_INSTR_USES_ALL THEN
840: EXECUTE IMMEDIATE l_queryString INTO l_dffs using p_entity_id;
841: END IF;