SAP Function Modules

HR_PSF_FP1_DEF_AGE SAP Function module







HR_PSF_FP1_DEF_AGE is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name HR_PSF_FP1_DEF_AGE into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: HRFPBS5FP1
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM HR_PSF_FP1_DEF_AGE - HR PSF FP1 DEF AGE





CALL FUNCTION 'HR_PSF_FP1_DEF_AGE' "
  EXPORTING
    id_pernr =                  " p0001-pernr
    is_age =                    " psen_duration
*   id_datev = SY-DATUM         " p06_datev
*   id_crule = 'FP30'           " psen_crule
  IMPORTING
    ed_datag =                  " begda
* TABLES
*   ct_p0002 =                  " p0002
  EXCEPTIONS
    ERROR_IT0002 = 1            "
    ERROR_CONVERSION_RULE = 2   "
    .  "  HR_PSF_FP1_DEF_AGE

ABAP code example for Function Module HR_PSF_FP1_DEF_AGE





The ABAP code below is a full code listing to execute function module HR_PSF_FP1_DEF_AGE including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).

DATA:
ld_ed_datag  TYPE BEGDA ,
it_ct_p0002  TYPE STANDARD TABLE OF P0002,"TABLES PARAM
wa_ct_p0002  LIKE LINE OF it_ct_p0002 .


DATA(ld_id_pernr) = Check type of data required
DATA(ld_is_age) = 'Check type of data required'.
DATA(ld_id_datev) = 'Check type of data required'.
DATA(ld_id_crule) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_ct_p0002 to it_ct_p0002. . CALL FUNCTION 'HR_PSF_FP1_DEF_AGE' EXPORTING id_pernr = ld_id_pernr is_age = ld_is_age * id_datev = ld_id_datev * id_crule = ld_id_crule IMPORTING ed_datag = ld_ed_datag * TABLES * ct_p0002 = it_ct_p0002 EXCEPTIONS ERROR_IT0002 = 1 ERROR_CONVERSION_RULE = 2 . " HR_PSF_FP1_DEF_AGE
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_ed_datag  TYPE BEGDA ,
ld_id_pernr  TYPE P0001-PERNR ,
it_ct_p0002  TYPE STANDARD TABLE OF P0002 ,
wa_ct_p0002  LIKE LINE OF it_ct_p0002,
ld_is_age  TYPE PSEN_DURATION ,
ld_id_datev  TYPE P06_DATEV ,
ld_id_crule  TYPE PSEN_CRULE .


ld_id_pernr = Check type of data required

"populate fields of struture and append to itab
append wa_ct_p0002 to it_ct_p0002.
ld_is_age = 'Check type of data required'.
ld_id_datev = 'Check type of data required'.
ld_id_crule = 'Check type of data required'.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name HR_PSF_FP1_DEF_AGE or its description.