‎2007 Dec 15 7:14 AM
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
‎2007 Dec 15 7:21 AM
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.
‎2007 Dec 15 7:21 AM
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.
‎2007 Dec 15 8:18 AM
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
‎2007 Dec 15 8:22 AM
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.
‎2007 Dec 15 8:23 AM
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
‎2007 Dec 15 8:32 AM
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.
‎2007 Dec 15 2:03 PM
types refer structure
and other refers internal table of structure
‎2007 Dec 15 4:48 PM
Hi,
type standard table of it_itab with default key.
Regards,
Clemens