DBA Data[Home] [Help]

APPS.HR_FLEX_VALUE_SET_INFO dependencies on DBMS_LOB

Line 392: l_order_clause_position := DBMS_LOB.INSTR(UPPER(l_validation_table.where_and_order_clause),'ORDER BY');

388: LOOP
389: --
390: /* changes for bug#13626638 starts here */
391:
392: l_order_clause_position := DBMS_LOB.INSTR(UPPER(l_validation_table.where_and_order_clause),'ORDER BY');
393:
394: /* changes for bug#13626638 ends here */
395:
396: IF (l_order_clause_position > 0)

Line 404: l_validation_table.where_clause := DBMS_LOB.SUBSTR(l_validation_table.where_and_order_clause,l_order_clause_position -1,1);

400: -- ORDER BY statements
401: --
402: /* changes for bug#13626638 starts here */
403:
404: l_validation_table.where_clause := DBMS_LOB.SUBSTR(l_validation_table.where_and_order_clause,l_order_clause_position -1,1);
405: l_validation_table.order_clause := DBMS_LOB.SUBSTR(l_validation_table.where_and_order_clause,length(l_validation_table.where_and_order_clause),l_order_clause_position);
406:
407: /* changes for bug#13626638 ends here */
408: --

Line 405: l_validation_table.order_clause := DBMS_LOB.SUBSTR(l_validation_table.where_and_order_clause,length(l_validation_table.where_and_order_clause),l_order_clause_position);

401: --
402: /* changes for bug#13626638 starts here */
403:
404: l_validation_table.where_clause := DBMS_LOB.SUBSTR(l_validation_table.where_and_order_clause,l_order_clause_position -1,1);
405: l_validation_table.order_clause := DBMS_LOB.SUBSTR(l_validation_table.where_and_order_clause,length(l_validation_table.where_and_order_clause),l_order_clause_position);
406:
407: /* changes for bug#13626638 ends here */
408: --
409: ELSE