DBA Data[Home] [Help]

APPS.PER_PER_BUS dependencies on HZ_PARTIES

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

1167: -- |-----------------------< chk_party_id >----------------------------------|
1168: -- ---------------------------------------------------------------------------
1169: --
1170: -- Description:
1171: -- - Validates that the party exists as a party in HZ_PARTIES.
1172: --
1173: -- Pre-conditions:
1174: -- None
1175: --

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

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

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

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

Line 1207: from hz_parties

1203: l_api_updating boolean;
1204: --
1205: cursor c1 is
1206: select null
1207: from hz_parties
1208: where party_id = p_party_id;
1209: --
1210: begin
1211: if g_debug then

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

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