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

This is regarding internal table

Former Member
0 Likes
862

Hi to all,

types : begin of it_itab,

name type ztab-name,

tval like ztab-tval,

fval like ztab-fval,

end ofit_itab,

it_jtab type standard table of it_itab.

What is the meaning of this it_jtab type standard table of it_itab.

what it specifies exactly.

Thanks and regards,

s

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
837

your coding has two parts as below:

types :

1) begin of it_itab,

name type ztab-name,

tval like ztab-tval,

fval like ztab-fval,

end of it_itab,

2) it_jtab type standard table of it_itab.

in the first part you are defining a structure.

in the second part you are importing that structure and creating an internal table.

Reward Points if useful.

7 REPLIES 7
Read only

Former Member
0 Likes
838

your coding has two parts as below:

types :

1) begin of it_itab,

name type ztab-name,

tval like ztab-tval,

fval like ztab-fval,

end of it_itab,

2) it_jtab type standard table of it_itab.

in the first part you are defining a structure.

in the second part you are importing that structure and creating an internal table.

Reward Points if useful.

Read only

Former Member
0 Likes
837

HI,

TYPES STATEMENT CREATES A STRUCTURE,

IT_JTAB IS THE INTERNAL TABLE THAT CONTAINS THE FIELDS SPECIFIED IN THE STRUCTURE,

An internal table is a temporary table stored in RAM on the application server. It is created and filled by a program during execution and is discarded when the program ends

INTERNAL TABLE ARE OF THREE TYPES

1.STANDARD

2.SORTED

3.HASHED

PLZ REWARD FOR HELPFUL ANSWERS

Read only

Former Member
0 Likes
837

Hi swinath,

There are three types of internal tables.

1. Standard table

2. Sorted Table

3. Hashed Table.

types : begin of it_itab,

name type ztab-name,

tval like ztab-tval,

fval like ztab-fval,

end ofit_itab,

DATA: it_jtab type standard table of it_itab.

DATA: it_jtab type standard table of it_itab.It is a type of internal table declaration.

Read only

Former Member
0 Likes
837

HI,

TYPES STATEMENT CREATES A STRUCTURE,

IT_JTAB IS THE INTERNAL TABLE THAT CONTAINS THE FIELDS SPECIFIED IN THE STRUCTURE,

An internal table is a temporary table stored in RAM on the application server. It is created and filled by a program during execution and is discarded when the program ends

INTERNAL TABLE ARE OF THREE TYPES

1.STANDARD

2.SORTED

3.HASHED

PLZ REWARD FOR HELPFUL ANSWERS

Read only

Former Member
0 Likes
837

Hi,

types : begin of it_itab,

name type ztab-name,

tval like ztab-tval,

fval like ztab-fval,

end ofit_itab,

Types defines the standard strcuture which you can use any where in the report.

<b>it_jtab type standard table of it_itab.</b>

As strcuture doesnot contain morethan one data, we declaring the internal using the strcuture which defined.<b> The above statement is used to create a internal table without header line and the internal table type is of standard.</b>

Thanks,

Sriram Ponna.

Read only

Former Member
0 Likes
837

types refer structure

and other refers internal table of structure

Read only

Clemenss
Active Contributor
0 Likes
837

Hi,

type standard table of it_itab with default key.

Regards,

Clemens