DBA Data[Home] [Help]

APPS.POS_PARTY_MANAGEMENT_PKG dependencies on FND_API

Line 37: x_status := fnd_api.g_ret_sts_success;

33: OPEN l_cur;
34: FETCH l_cur INTO x_code_assignment_id;
35: IF l_cur%found THEN
36: CLOSE l_cur;
37: x_status := fnd_api.g_ret_sts_success;
38: RETURN;
39: END IF;
40: CLOSE l_cur;
41:

Line 54: ( FND_API.G_FALSE,

50: l_code_assignment_rec.created_by_module := 'POS_SUPPLIER_MGMT';
51: l_code_assignment_rec.application_id := 177;
52:
53: hz_classification_v2pub.create_code_assignment
54: ( FND_API.G_FALSE,
55: l_code_assignment_rec,
56: l_return_status,
57: l_msg_count,
58: l_msg_data,

Line 141: (p_init_msg_list => fnd_api.g_false,

137: l_org_rec.sic_code := p_sic_code;
138: l_org_rec.created_by_module := 'POS_SUPPLIER_MGMT';
139:
140: hz_party_v2pub.create_organization
141: (p_init_msg_list => fnd_api.g_false,
142: p_organization_rec => l_org_rec,
143: x_return_status => l_return_status,
144: x_msg_count => l_msg_count,
145: x_msg_data => l_msg_data,

Line 164: IF l_return_status IS NULL OR l_return_status <> fnd_api.g_ret_sts_success THEN

160: p_msg_count => l_msg_count,
161: p_msg_data => l_msg_data
162: );
163:
164: IF l_return_status IS NULL OR l_return_status <> fnd_api.g_ret_sts_success THEN
165: /* Added for bug 7366321 */
166: if nvl(l_hzprofile_changed,'N') = 'Y' then
167: fnd_profile.put('HZ_GENERATE_PARTY_NUMBER', l_hzprofile_value);
168: l_hzprofile_changed := 'N';

Line 242: ( p_init_msg_list => FND_API.G_FALSE,

238: l_contact_points_rec.owner_table_id := p_partyId;
239: l_contact_points_rec.created_by_module := 'POS_SUPPLIER_MGMT';
240:
241: hz_contact_point_v2pub.create_contact_point
242: ( p_init_msg_list => FND_API.G_FALSE,
243: p_contact_point_rec => l_contact_points_rec,
244: p_email_rec => l_email_rec,
245: x_contact_point_id => l_contact_point_id,
246: x_return_status => l_return_status,

Line 259: IF l_return_status IS NULL OR l_return_status <> fnd_api.g_ret_sts_success THEN

255: p_msg_count => l_msg_count,
256: p_msg_data => l_msg_data
257: );
258:
259: IF l_return_status IS NULL OR l_return_status <> fnd_api.g_ret_sts_success THEN
260: IF l_msg_count > 1 THEN
261: pos_log.combine_fnd_msg(l_msg_count, l_msg_data);
262: ELSE
263: l_msg_data := 'unknown error when calling hz_party_v2pub.create_organization';