cancel
Showing results for 
Search instead for 
Did you mean: 

time management infotypes

Former Member
0 Kudos

Hi gurus,

What are time management infotypes .....,how to retrieve data from the infotypes....

Thanks & regards

sai

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sai,

Please go throgh the following link

http://help.sap.com/saphelp_47x200/helpdata/en/8a/98579c46c411d189470000e829fbbd/content.htm

You can write the program in abap to extract the data from info types and put in a file.

Regards

Sridhar Goli

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi ,

infotypes from 2000 to 2999 are time infotypes ,

they are stored in the tables pa2000 to pa2999.

basically we use the macro...

rp_read_all_time_ity pn-begda pn-endda

to retrieve the data from the time data ...

because when we read the time infotype ,the records from the earliest to most recent system dates are loaded in the main memory,which lead to memory over load ,

so the time data should be read only for the specific time period,

so we use different macros ,other the which we ll be using for pa and pb ...

tables:pernr.

infotypes:20001 mode n

get:pernr.

rp_read_all_time_ity pn-begda pn-endda

loop at p2001.

write:....

endloop.