DBA Data[Home] [Help]

APPS.WSH_U_RASS dependencies on DBMS_SQL

Line 1013: l_CursorID := DBMS_SQL.OPEN_CURSOR;

1009: --
1010: WSH_DEBUG_SV.log(l_module_name,'P_SELECT_STATEMENT',P_SELECT_STATEMENT);
1011: END IF;
1012: --
1013: l_CursorID := DBMS_SQL.OPEN_CURSOR;
1014: l_SelectStmt := p_select_statement;
1015: DBMS_SQL.PARSE(l_CursorID, l_SelectStmt, DBMS_SQL.V7);
1016: DBMS_SQL.DEFINE_COLUMN(l_CursorID, 1, l_ship_from_location_id);
1017: DBMS_SQL.DEFINE_COLUMN(l_CursorID, 2, l_ship_to_location_id);

Line 1015: DBMS_SQL.PARSE(l_CursorID, l_SelectStmt, DBMS_SQL.V7);

1011: END IF;
1012: --
1013: l_CursorID := DBMS_SQL.OPEN_CURSOR;
1014: l_SelectStmt := p_select_statement;
1015: DBMS_SQL.PARSE(l_CursorID, l_SelectStmt, DBMS_SQL.V7);
1016: DBMS_SQL.DEFINE_COLUMN(l_CursorID, 1, l_ship_from_location_id);
1017: DBMS_SQL.DEFINE_COLUMN(l_CursorID, 2, l_ship_to_location_id);
1018: l_dummy := DBMS_SQL.EXECUTE(l_CursorID);
1019:

Line 1016: DBMS_SQL.DEFINE_COLUMN(l_CursorID, 1, l_ship_from_location_id);

1012: --
1013: l_CursorID := DBMS_SQL.OPEN_CURSOR;
1014: l_SelectStmt := p_select_statement;
1015: DBMS_SQL.PARSE(l_CursorID, l_SelectStmt, DBMS_SQL.V7);
1016: DBMS_SQL.DEFINE_COLUMN(l_CursorID, 1, l_ship_from_location_id);
1017: DBMS_SQL.DEFINE_COLUMN(l_CursorID, 2, l_ship_to_location_id);
1018: l_dummy := DBMS_SQL.EXECUTE(l_CursorID);
1019:
1020:

Line 1017: DBMS_SQL.DEFINE_COLUMN(l_CursorID, 2, l_ship_to_location_id);

1013: l_CursorID := DBMS_SQL.OPEN_CURSOR;
1014: l_SelectStmt := p_select_statement;
1015: DBMS_SQL.PARSE(l_CursorID, l_SelectStmt, DBMS_SQL.V7);
1016: DBMS_SQL.DEFINE_COLUMN(l_CursorID, 1, l_ship_from_location_id);
1017: DBMS_SQL.DEFINE_COLUMN(l_CursorID, 2, l_ship_to_location_id);
1018: l_dummy := DBMS_SQL.EXECUTE(l_CursorID);
1019:
1020:
1021: loop

Line 1018: l_dummy := DBMS_SQL.EXECUTE(l_CursorID);

1014: l_SelectStmt := p_select_statement;
1015: DBMS_SQL.PARSE(l_CursorID, l_SelectStmt, DBMS_SQL.V7);
1016: DBMS_SQL.DEFINE_COLUMN(l_CursorID, 1, l_ship_from_location_id);
1017: DBMS_SQL.DEFINE_COLUMN(l_CursorID, 2, l_ship_to_location_id);
1018: l_dummy := DBMS_SQL.EXECUTE(l_CursorID);
1019:
1020:
1021: loop
1022: if DBMS_SQL.FETCH_ROWS(l_CursorID) = 0 then

Line 1022: if DBMS_SQL.FETCH_ROWS(l_CursorID) = 0 then

1018: l_dummy := DBMS_SQL.EXECUTE(l_CursorID);
1019:
1020:
1021: loop
1022: if DBMS_SQL.FETCH_ROWS(l_CursorID) = 0 then
1023: exit;
1024: end if;
1025: DBMS_SQL.COLUMN_VALUE(l_CursorID, 1, l_ship_from_location_id);
1026: DBMS_SQL.COLUMN_VALUE(l_CursorID, 2, l_ship_to_location_id);

Line 1025: DBMS_SQL.COLUMN_VALUE(l_CursorID, 1, l_ship_from_location_id);

1021: loop
1022: if DBMS_SQL.FETCH_ROWS(l_CursorID) = 0 then
1023: exit;
1024: end if;
1025: DBMS_SQL.COLUMN_VALUE(l_CursorID, 1, l_ship_from_location_id);
1026: DBMS_SQL.COLUMN_VALUE(l_CursorID, 2, l_ship_to_location_id);
1027: l_index := l_index + 1;
1028: x_headers(l_index).ship_from_location_id := l_ship_from_location_id;
1029: x_headers(l_index).ship_to_location_id := l_ship_to_location_id;

Line 1026: DBMS_SQL.COLUMN_VALUE(l_CursorID, 2, l_ship_to_location_id);

1022: if DBMS_SQL.FETCH_ROWS(l_CursorID) = 0 then
1023: exit;
1024: end if;
1025: DBMS_SQL.COLUMN_VALUE(l_CursorID, 1, l_ship_from_location_id);
1026: DBMS_SQL.COLUMN_VALUE(l_CursorID, 2, l_ship_to_location_id);
1027: l_index := l_index + 1;
1028: x_headers(l_index).ship_from_location_id := l_ship_from_location_id;
1029: x_headers(l_index).ship_to_location_id := l_ship_to_location_id;
1030: IF l_debug_on THEN