DBA Data[Home] [Help]

APPS.PER_PER_BUS dependencies on HZ_PARTIES

Line 1167: -- - Validates that the party exists as a party in HZ_PARTIES.

1163: -- |-----------------------< chk_party_id >----------------------------------|
1164: -- ---------------------------------------------------------------------------
1165: --
1166: -- Description:
1167: -- - Validates that the party exists as a party in HZ_PARTIES.
1168: --
1169: -- Pre-conditions:
1170: -- None
1171: --

Line 1180: -- - party_id is null or party exists in hz_parties.

1176: -- p_object_version_number
1177: --
1178: -- Post Success:
1179: -- Processing continues if:
1180: -- - party_id is null or party exists in hz_parties.
1181: --
1182: -- Post Failure:
1183: -- An application error is raised and processing is terminated if:
1184: -- - party_id does not exist in HZ_PARTIES.

Line 1184: -- - party_id does not exist in HZ_PARTIES.

1180: -- - party_id is null or party exists in hz_parties.
1181: --
1182: -- Post Failure:
1183: -- An application error is raised and processing is terminated if:
1184: -- - party_id does not exist in HZ_PARTIES.
1185: --
1186: -- Access Status:
1187: -- Internal Table Handler Use Only.
1188: --

Line 1203: from hz_parties

1199: l_api_updating boolean;
1200: --
1201: cursor c1 is
1202: select null
1203: from hz_parties
1204: where party_id = p_party_id;
1205: --
1206: begin
1207: if g_debug then

Line 1247: -- Check that the party_id exists in HZ_PARTIES.

1243: -- Check if party is set
1244: --
1245: If p_party_id is not null then
1246: --
1247: -- Check that the party_id exists in HZ_PARTIES.
1248: --
1249: open c1;
1250: fetch c1 into l_exists;
1251: if c1%notfound then