DBA Data[Home] [Help]

APPS.WSH_INVOICE_UTILITIES dependencies on RA_GROUP_BY_COLUMNS

Line 83: From ra_group_by_columns c

79: this_rowid Varchar2(20);
80:
81: Cursor cur_get_cols IS
82: Select upper(c.from_column_name), c.from_column_length
83: From ra_group_by_columns c
84: Where c.column_type = 'M';
85:
86: Cursor cur_get_del_id (x_del_name IN VARCHAR2) IS
87: Select delivery_id

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

89: Where name = x_del_name;
90:
91: BEGIN
92:
93: -- Get all the group by columns from ra_group_by_columns table
94: -- and build up the select and group bu column clauses.
95: --dbms_output.put_line('Position 1');
96: Open cur_get_cols;
97: Loop