DBA Data[Home] [Help]

APPS.AR_INTEREST_LINES_PKG dependencies on AR_INTEREST_HEADERS

Line 114: FROM ar_interest_headers

110: x_return_status IN OUT NOCOPY VARCHAR2)
111: IS
112: CURSOR c IS
113: SELECT process_status
114: FROM ar_interest_headers
115: WHERE interest_header_id = p_old_rec.interest_header_id;
116: l_header_status VARCHAR2(1);
117: BEGIN
118: arp_util.debug('validate_line +');

Line 126: FND_MESSAGE.SET_TOKEN( 'TABLE', 'ar_interest_headers' );

122: IF c%NOTFOUND THEN
123: FND_MESSAGE.SET_NAME( 'AR', 'HZ_API_INVALID_FK' );
124: FND_MESSAGE.SET_TOKEN( 'FK', 'interest_header_id' );
125: FND_MESSAGE.SET_TOKEN( 'COLUMN', p_old_rec.interest_header_id);
126: FND_MESSAGE.SET_TOKEN( 'TABLE', 'ar_interest_headers' );
127: FND_MSG_PUB.ADD;
128: x_return_status := FND_API.G_RET_STS_ERROR;
129: END IF;
130: CLOSE c;