DBA Data[Home] [Help]

APPS.POS_ENTERPRISE_UTIL_PKG dependencies on POS_PARTY_MANAGEMENT_PKG

Line 104: pos_party_management_pkg.classify_party

100: raise_application_error(-20001,x_exception_msg,TRUE);
101: END IF;
102: CLOSE l_cur;
103:
104: pos_party_management_pkg.classify_party
105: (l_party_id,
106: 'POS_CLASSIFICATION',
107: 'PROCUREMENT_ORGANIZATION',
108: x_status,

Line 118: pos_party_management_pkg.classify_party

114: || l_party_id ||' '|| x_exception_msg;
115: raise_application_error(-20002,x_exception_msg,TRUE);
116: END IF;
117:
118: pos_party_management_pkg.classify_party
119: (l_party_id,
120: 'POS_PARTICIPANT_TYPE',
121: 'ENTERPRISE',
122: x_status,

Line 156: l_emp_records := pos_party_management_pkg.get_emp_or_ctgt_wrkr_pty_id(l_user_id);

152: into l_user_id
153: from fnd_user
154: where user_name = p_username;
155:
156: l_emp_records := pos_party_management_pkg.get_emp_or_ctgt_wrkr_pty_id(l_user_id);
157: if ( l_emp_records <= 0 ) then
158: x_status := 'E';
159: x_exception_msg := 'User: '||p_username ||' does not have employee id set.';
160: raise_application_error(-20001, x_exception_msg, true);

Line 175: pos_party_management_pkg.pos_create_user

171: IF (x_status <> 'S') THEN
172: raise_application_error(-20001, x_exception_msg, true);
173: END IF;
174:
175: pos_party_management_pkg.pos_create_user
176: (p_username,
177: p_firstname,
178: p_lastname,
179: p_emailaddress,

Line 189: pos_party_management_pkg.classify_party

185: IF (x_status <> 'S') THEN
186: raise_application_error(-20001, x_exception_msg, true);
187: END IF;
188:
189: pos_party_management_pkg.classify_party
190: (x_party_id,
191: 'POS_PARTICIPANT_TYPE',
192: 'ENTERPRISE_USER',
193: x_status,