Open all | Close all
|
Infotype selection
The following code demonstrates the various methods of retrieving data from an infotype.
|
*Loop around infotype data (similar to select/endselect).
PROVIDE * from p0001 between pn-begda and pn-endda.
ENDPROVIDE.
*Loop around data from more than one infotype
PROVIDE BEGDA ENDDA STAT2 MASSN MASSG FROM P0000
PERNR PERSK BTRTL SACHZ FROM P0001
BETWEEN PN-BEGDA AND PN-ENDDA
WHERE P0000-BEGDA < sy-datum AND
P0000-ENDDA > sy-datum AND
P0001-BEGDA < sy-datum AND
P0001-ENDDA > sy-datum.
*Selecting the latest infotype record
rp_provide_from_last p0001 space pn-begda pn-endda.
|
|
|