DBA Data[Home] [Help]

APPS.POS_PARTY_MANAGEMENT_PKG dependencies on HZ_PARTY_V2PUB

Line 113: l_org_rec hz_party_v2pub.organization_rec_type;

109: x_exception_msg OUT NOCOPY VARCHAR2,
110: x_status OUT NOCOPY VARCHAR2
111: )
112: IS
113: l_org_rec hz_party_v2pub.organization_rec_type;
114: l_return_status VARCHAR2(1);
115: l_msg_count NUMBER;
116: l_msg_data VARCHAR2(3000);
117:

Line 140: hz_party_v2pub.create_organization

136: l_org_rec.hq_branch_ind := p_corp_hq_flag;
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,

Line 158: p_prefix => 'call hz_party_v2pub.create_organization',

154: end if;
155: /* End */
156: pos_log.log_call_result
157: (p_module => 'POSENTRB',
158: p_prefix => 'call hz_party_v2pub.create_organization',
159: p_return_status => l_return_status,
160: p_msg_count => l_msg_count,
161: p_msg_data => l_msg_data
162: );

Line 176: x_exception_msg := 'unknown error when calling hz_party_v2pub.create_organization';

172: x_exception_msg := l_msg_data;
173: ELSIF l_msg_count > 1 THEN
174: pos_log.combine_fnd_msg(l_msg_count, x_exception_msg);
175: ELSE
176: x_exception_msg := 'unknown error when calling hz_party_v2pub.create_organization';
177: END IF;
178: raise_application_error(-20001, x_exception_msg, true);
179: END IF;
180:

Line 263: l_msg_data := 'unknown error when calling hz_party_v2pub.create_organization';

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';
264: END IF;
265: raise_application_error(-20001, l_msg_data, true);
266: END IF;
267: END create_email_address;