DBA Data[Home] [Help]

APPS.PON_UDA_IMPORT_PKG dependencies on DBMS_SQL

Line 879: v_query_hdl := DBMS_SQL.open_cursor;

875: -- Not using binds as it would be complicated to put all the checks
876: d_progress := 250;
877: PON_UDA_IMPORT_PKG.DEBUG('l_sql_query : ' || l_sql_query, d_progress);
878: PON_UDA_IMPORT_PKG.DEBUG('Before executing', d_progress);
879: v_query_hdl := DBMS_SQL.open_cursor;
880: DBMS_SQL.parse(v_query_hdl, l_sql_query, DBMS_SQL.native);
881: DBMS_SQL.define_column(v_query_hdl, 1, l_check);
882: l_rows_processed := DBMS_SQL.EXECUTE(v_query_hdl);
883: PON_UDA_IMPORT_PKG.DEBUG('After executing l_rows_processed :' || l_rows_processed, d_progress);

Line 880: DBMS_SQL.parse(v_query_hdl, l_sql_query, DBMS_SQL.native);

876: d_progress := 250;
877: PON_UDA_IMPORT_PKG.DEBUG('l_sql_query : ' || l_sql_query, d_progress);
878: PON_UDA_IMPORT_PKG.DEBUG('Before executing', d_progress);
879: v_query_hdl := DBMS_SQL.open_cursor;
880: DBMS_SQL.parse(v_query_hdl, l_sql_query, DBMS_SQL.native);
881: DBMS_SQL.define_column(v_query_hdl, 1, l_check);
882: l_rows_processed := DBMS_SQL.EXECUTE(v_query_hdl);
883: PON_UDA_IMPORT_PKG.DEBUG('After executing l_rows_processed :' || l_rows_processed, d_progress);
884:

Line 881: DBMS_SQL.define_column(v_query_hdl, 1, l_check);

877: PON_UDA_IMPORT_PKG.DEBUG('l_sql_query : ' || l_sql_query, d_progress);
878: PON_UDA_IMPORT_PKG.DEBUG('Before executing', d_progress);
879: v_query_hdl := DBMS_SQL.open_cursor;
880: DBMS_SQL.parse(v_query_hdl, l_sql_query, DBMS_SQL.native);
881: DBMS_SQL.define_column(v_query_hdl, 1, l_check);
882: l_rows_processed := DBMS_SQL.EXECUTE(v_query_hdl);
883: PON_UDA_IMPORT_PKG.DEBUG('After executing l_rows_processed :' || l_rows_processed, d_progress);
884:
885: d_progress := 260;

Line 882: l_rows_processed := DBMS_SQL.EXECUTE(v_query_hdl);

878: PON_UDA_IMPORT_PKG.DEBUG('Before executing', d_progress);
879: v_query_hdl := DBMS_SQL.open_cursor;
880: DBMS_SQL.parse(v_query_hdl, l_sql_query, DBMS_SQL.native);
881: DBMS_SQL.define_column(v_query_hdl, 1, l_check);
882: l_rows_processed := DBMS_SQL.EXECUTE(v_query_hdl);
883: PON_UDA_IMPORT_PKG.DEBUG('After executing l_rows_processed :' || l_rows_processed, d_progress);
884:
885: d_progress := 260;
886: IF DBMS_SQL.fetch_rows(v_query_hdl) <= 0 THEN

Line 886: IF DBMS_SQL.fetch_rows(v_query_hdl) <= 0 THEN

882: l_rows_processed := DBMS_SQL.EXECUTE(v_query_hdl);
883: PON_UDA_IMPORT_PKG.DEBUG('After executing l_rows_processed :' || l_rows_processed, d_progress);
884:
885: d_progress := 260;
886: IF DBMS_SQL.fetch_rows(v_query_hdl) <= 0 THEN
887: l_attr_grp_loc_index := x_attributes_row_table.FIRST;
888: l_present := 0;
889: WHILE (l_attr_grp_loc_index IS NOT NULL AND l_attr_grp_loc_index <= x_attributes_row_table.LAST)
890: LOOP