DBA Data[Home] [Help]

APPS.PA_ROLE_LISTS_PVT dependencies on PA_ROLE_LISTS_PKG

Line 47: PA_ROLE_LISTS_PKG.INSERT_ROW(

43: X_MSG_DATA);
44:
45: if X_RETURN_STATUS = FND_API.G_RET_STS_SUCCESS then
46: --call table handler to insert the row
47: PA_ROLE_LISTS_PKG.INSERT_ROW(
48: P_ROWID,
49: P_ROLE_LIST_ID,
50: P_NAME,
51: P_START_DATE_ACTIVE,

Line 111: PA_ROLE_LISTS_PKG.LOCK_ROW(

107: begin
108: PA_DEBUG.init_err_stack('PA_ROLE_LISTS_PVT.LOCK_ROW');
109: --any validation to be added here ?
110: --call table handler to lock the row
111: PA_ROLE_LISTS_PKG.LOCK_ROW(
112: P_ROWID,
113: P_RECORD_VERSION_NUMBER);
114:
115: X_RETURN_STATUS := FND_API.G_RET_STS_SUCCESS;

Line 185: PA_ROLE_LISTS_PKG.UPDATE_ROW(

181: end if;
182:
183: if X_RETURN_STATUS = FND_API.G_RET_STS_SUCCESS then
184: --call table handler to update the row
185: PA_ROLE_LISTS_PKG.UPDATE_ROW(
186: P_ROWID,
187: P_ROLE_LIST_ID,
188: P_NAME,
189: P_START_DATE_ACTIVE,

Line 260: PA_ROLE_LISTS_PKG.DELETE_ROW(P_ROWID);

256: X_MSG_DATA);
257:
258: if X_RETURN_STATUS = FND_API.G_RET_STS_SUCCESS then
259: ----call the table handler to delete role list
260: PA_ROLE_LISTS_PKG.DELETE_ROW(P_ROWID);
261:
262: delete from PA_ROLE_LIST_MEMBERS
263: where ROLE_LIST_ID = v_role_list_id;
264: