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

diffrence between INFOTYPES and TABLES

Former Member
0 Likes
475

diffrence between INFOTYPES and TABLES in detail please

3 REPLIES 3
Read only

Former Member
0 Likes
442

Hi,

An infotype is a 'record' or a 'screen' which holds data against an employee or PD object such as a position, org.unit etc.

A table stores values about an infotype and the way it will function.

Main program generates internal tables for infotypes at runtime.

Infotypes have an associated database table and a structure .

plzz refer to this link

http://planetsap.com/hr_hrinfotypes.htm

http://www.planetsap.com/HR_ABAP_Infotypes.htm

http://72.14.203.104/search?q=cache:FfEG_19IAzoJ:www.planetsap.com/hr_abap_main_page.htminfotypeshr++ABAP&hl=en&gl=in&ct=clnk&cd=1

Transparent Table

Is the same data base table., to store data.

psl refer the below link .

Read only

Former Member
0 Likes
442

An infotype is a 'record' or a 'screen' which holds data against an employee or PD object such as a position, org.unit etc.

A table stores values about an infotype and the way it will function.

Main program generates internal tables for infotypes at runtime.

Infotypes have an associated database table and a structure .

plzz refer to this link

http://planetsap.com/hr_hrinfotypes.htm

http://www.planetsap.com/HR_ABAP_Infotypes.htm

http://72.14.203.104/search?q=cache:FfEG_19IAzoJ:www.planetsap.com/hr_abap_main_page.htminfotypeshr++ABAP&hl=en&gl=in&ct=clnk&cd=1

Transparent Table

Is the same data base table., to store data.

psl refer the below link .

[;

Read only

Former Member
0 Likes
442

1. Why SAP introduced Infotypes

Bcos : to divide lot of master data related to

an employee into groups called as INFOTYPE

dividing in such group makes it logically

distributed so that authorisation rights

can be distributed accordingly. (which practically

happens in most companies where HR is not centralised)

2.why SAP HR module using infotypes mostly

BCos : All its data (master data related to emplyee)

is found in infotypes only. (all kind of master data

is put in some or other infotype )

3 Any drawbacks using transparent tables

SAP suggests that to read infotype information,

use their STANDARD function modules only.

BCOS :

a. it will be fast

b. those FMs will automatically check authorisations

c. any change in these FM's by SAP, will automatically

effect Z Programs (if perfomance, data etc is improved)

4. Ht diff. bw Infotypes n transparent tables

Infotype is the FUNCTIONAL WORD

Table is the TECHNICAL WORD

Infotype means logical set of information.

Table means actual physical database table.

Each infotype has a corresponding transparent table.

Hope the above helps & clarifies.