DBA Data[Home] [Help]

APPS.OE_INVOICE_PUB dependencies on RA_GROUP_BY_COLUMNS

Line 8193: FROM ra_group_by_columns c

8189: Type DelCurType IS REF CURSOR;
8190: del_cursor DelCurType;
8191: CURSOR cur_get_cols IS
8192: SELECT upper(c.from_column_name), c.from_column_length
8193: FROM ra_group_by_columns c
8194: WHERE c.column_type = 'M';
8195:
8196: CURSOR cur_get_del_id (p_del_name IN VARCHAR2) IS
8197: SELECT delivery_id

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

8215: END IF;
8216: x_return_status := FND_API.G_RET_STS_SUCCESS;
8217: RETURN;
8218: END IF;
8219: -- Get all the group by columns from ra_group_by_columns table
8220: -- and build up the select and group by column clauses.
8221: OPEN cur_get_cols;
8222: LOOP
8223: FETCH cur_get_cols Into col_name, col_length;