DBA Data[Home] [Help]

APPS.AHL_UTIL_UC_PKG dependencies on AHL_UC_HEADERS_H

Line 2001: FROM ahl_uc_headers_h

1997: BEGIN
1998: x_return_status := FND_API.G_RET_STS_SUCCESS;
1999: --Get the maximum version number of the particualr UC from history table
2000: SELECT nvl(max(version_no), 0) INTO l_version_no
2001: FROM ahl_uc_headers_h
2002: WHERE unit_config_header_id = p_uc_header_id;
2003:
2004: -- Insert into the exactly same record into ahl_unit_config_headers_h
2005: OPEN get_uc_header;

Line 2010: INSERT INTO ahl_uc_headers_h(

2006: FETCH get_uc_header INTO l_uc_header_rec;
2007: IF get_uc_header%NOTFOUND THEN
2008: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2009: ELSE
2010: INSERT INTO ahl_uc_headers_h(
2011: unit_config_header_id,
2012: version_no,
2013: object_version_number,
2014: creation_date,