DBA Data[Home] [Help]

APPS.AHL_UTIL_UC_PKG dependencies on AHL_UC_HEADERS_H

Line 1996: FROM ahl_uc_headers_h

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

Line 2005: INSERT INTO ahl_uc_headers_h(

2001: FETCH get_uc_header INTO l_uc_header_rec;
2002: IF get_uc_header%NOTFOUND THEN
2003: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2004: ELSE
2005: INSERT INTO ahl_uc_headers_h(
2006: unit_config_header_id,
2007: version_no,
2008: object_version_number,
2009: creation_date,