Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Error: help in bsp

Former Member
0 Likes
390

<b>"itab" is neither specified under 'tables" nor defined as an internal table</b>

What to do

<b>Here is the layout:</b>

<%@page language="abap" %>

<%@extension name="htmlb" prefix="htmlb" %>

<html>

<head>

<link rel="stylesheet" href="../../sap/public/bc/bsp/styles/sapbsp.css">

<title> page 2 of bsp </title>

</head>

<body>

<h2> list of airlines </h2>

<table border="1">

<tr>

<th> No. </th>

<th> Airline </th>

<th> ID </th>

<th> URL </th>

</tr>

<%

data: wa type catsdb.

%>

<tr>

<%

LOOP AT itab INTO wa.

%>

<td> <%= write: SY-TABIX %> </td>

<td> <%= wa-counter %> </td>

<td> <%= wa-pernr %> </td>

<td> <%= wa-workdate %> </td>

</tr>

<%

ENDLOOP.

%>

</table>

</body>

</html>

Page attribute's are

1. itab type catsdb

2. cat1 type catsdb

and in event handler i gave

SELECT counter pernr workdate

UP TO 10 ROWS

FROM catsdb

INTO itab.

Thank you,

Regards,

Jagrut BharatKumar Shukla

3 REPLIES 3
Read only

Former Member
0 Likes
365

Hi,

can you show the thread again?

Regards, Dieter

Read only

Former Member
0 Likes
365
<%@page language="abap" %>

<%@extension name="htmlb" prefix="htmlb" %>

<html>

  <head>

    <link rel="stylesheet" href="../../sap/public/bc/bsp/styles/sapbsp.css">

    <title> page 2 of bsp </title>

  </head>

  <body>

    <h2> list of airlines </h2>

    <table border="1">

      <tr>

        <th> No. </th>

        <th> Airline </th>
        <th> ID </th>
        <th> URL </th>
      </tr>
<%
  data:  wa type catsdb.
%>
<tr>
<%
  LOOP AT itab INTO wa.
%>

  <td> <%= write: SY-TABIX %> </td>

  <td> <%= wa-counter %> </td>

  <td> <%= wa-pernr %> </td>

  <td> <%= wa-workdate %> </td>

</tr>

<%

  ENDLOOP.

%>


    </table>

  </body>

</html>
Read only

Former Member
0 Likes
365

<b>error :</b> "ITAB" is neither specified under "TABLES"nor defined as an internal

table.