DBA Data[Home] [Help]

APPS.OE_INVOICE_PUB dependencies on RA_GROUP_BY_COLUMNS

Line 7809: FROM ra_group_by_columns c

7805: Type DelCurType IS REF CURSOR;
7806: del_cursor DelCurType;
7807: CURSOR cur_get_cols IS
7808: SELECT upper(c.from_column_name), c.from_column_length
7809: FROM ra_group_by_columns c
7810: WHERE c.column_type = 'M';
7811:
7812: CURSOR cur_get_del_id (p_del_name IN VARCHAR2) IS
7813: SELECT delivery_id

Line 7835: -- Get all the group by columns from ra_group_by_columns table

7831: END IF;
7832: x_return_status := FND_API.G_RET_STS_SUCCESS;
7833: RETURN;
7834: END IF;
7835: -- Get all the group by columns from ra_group_by_columns table
7836: -- and build up the select and group by column clauses.
7837: OPEN cur_get_cols;
7838: LOOP
7839: FETCH cur_get_cols Into col_name, col_length;