Google Search - Blog...........

Sample Code For Do Varying In HR ABAP

*---This is a common thing in HRABAP where there is a necessisity to read the data
*---from wage types from info type 0008, info type 0025, info type 0041. I am giving
*---a simple example for one of them

data : it_pa0008 like pa0008 occurs 0 with header line.

data : begin of it_temp occurs 0,

lga01 like pa0008-lga01,

bet01 like pa0008-bet01,

end of it_temp.

do 20 times

varying it_temp-lga01 from it_pa0008-lga01 next it_pa0008-lga02

varying it_temp-bet01 from it_pa0008-bet01 next it_pa0008-bet02.

enddo.


ALSO READ:

- Get Family Data In HR ABAP.

- Net Salary Report In HR ABAP.

- Cumulative Amount Report in HR ABAP.

- Use Of Time Macro rp-read-all-time-ity in HR ABAP.

- Cumulative List Of Absences For Company Code, Personnel Area & Personnel Subarea.

.....Back To Index On HR ABAP.

.....Back To MAIN INDEX.


No comments:

Post a Comment