DBA Data[Home] [Help]

APPS.ZX_TEST_API dependencies on ZX_PARTY_TYPES

Line 592: l_table_name zx_party_types.party_source_table%type;

588: l_varchar2_id VARCHAR2(1000);
589: l_varchar2_id1 VARCHAR2(1000);
590: l_num_id NUMBER;
591: l_chrt_acct_id hr_all_organization_units.business_group_id%type;
592: l_table_name zx_party_types.party_source_table%type;
593: l_party_type zx_party_types.party_type_code%type;
594: l_party_number hz_parties.party_number%type;
595: l_name xle_entity_profiles.name%type;
596: l_flow VARCHAR2(2000);

Line 593: l_party_type zx_party_types.party_type_code%type;

589: l_varchar2_id1 VARCHAR2(1000);
590: l_num_id NUMBER;
591: l_chrt_acct_id hr_all_organization_units.business_group_id%type;
592: l_table_name zx_party_types.party_source_table%type;
593: l_party_type zx_party_types.party_type_code%type;
594: l_party_number hz_parties.party_number%type;
595: l_name xle_entity_profiles.name%type;
596: l_flow VARCHAR2(2000);
597:

Line 878: -- value in table ZX_PARTY_TYPES, for

874: --
875: -- the LOV used is HZPARTIES_POVENDORS
876: -- This User Key is a special case.
877: -- Depending of the mapping of ZX_EVENT_CLS_MAPPINGS and
878: -- value in table ZX_PARTY_TYPES, for
879: -- every user_key, will be chosen a from either
880: -- HZ_PARTIES or PO_VENDORS, so we have the following:
881: -- If PO_VENDORS the segments in user key are:
882: -- Segment 1 is VENDOR_NAME

Line 951: FROM zx_party_types

947:
948: BEGIN
949: SELECT upper(party_source_table)
950: INTO l_table_name
951: FROM zx_party_types
952: WHERE party_type_code = l_party_type;
953: EXCEPTION
954: WHEN OTHERS THEN l_table_name := null;
955: END;

Line 1350: -- value in table ZX_PARTY_TYPES, for

1346: --
1347: -- the LOV used is HZPARTYSITES_POVENDORSITES
1348: -- This User Key is a special case.
1349: -- Depending of the mapping of ZX_EVENT_CLS_MAPPINGS and
1350: -- value in table ZX_PARTY_TYPES, for
1351: -- every user_key, will be chosen a from either
1352: -- HZ_PARTY_SITES or PO_VENDOR_SITES, so we have the following:
1353: -- If PO_VENDOR_SITES the segments in user key are:
1354: -- Segment 1 is VENDOR_NAME

Line 1423: from zx_party_types

1419:
1420: BEGIN
1421: select upper(party_source_table)
1422: into l_table_name
1423: from zx_party_types
1424: where party_type_code = l_party_type;
1425: EXCEPTION
1426: WHEN OTHERS THEN l_table_name := null;
1427: END;