SAP Function Modules

EXIT_SAPLPARA_001 SAP Function module - Exit to Determine the Number of Periods (Feature 'PFREQ')







EXIT_SAPLPARA_001 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 EXIT_SAPLPARA_001 into the relevant SAP transaction such as SE37 or SE80.

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


Pattern for FM EXIT_SAPLPARA_001 - EXIT SAPLPARA 001





CALL FUNCTION 'EXIT_SAPLPARA_001' "Exit to Determine the Number of Periods (Feature 'PFREQ')
  EXPORTING
*   tclas = 'A'                 " pspar-tclas   Transaction class
*   pernr =                     " prel-pernr    Personnel Number
*   keydt = SY-DATUM            " prel-begda    Valid From Date
    molga =                     " t001p-molga   Country Grouping
*   subty = '0'                 " prel-subty    Subtype
*   zeinh =                     " t549r-zeinh   Payroll Time Units
  IMPORTING
    num_periods =               " hrbp_number_of_periods_strct  Structure With All Permitted Periods Per Year (Dom. PFREQ)
  EXCEPTIONS
    USE_STANDARD = 1            "               Execute Standard Calculation
    CUSTOMER_ERROR = 2          "               Error
    .  "  EXIT_SAPLPARA_001

ABAP code example for Function Module EXIT_SAPLPARA_001





The ABAP code below is a full code listing to execute function module EXIT_SAPLPARA_001 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_num_periods  TYPE HRBP_NUMBER_OF_PERIODS_STRCT .


DATA(ld_tclas) = some text here

SELECT single PERNR
FROM PREL
INTO @DATA(ld_pernr).


SELECT single BEGDA
FROM PREL
INTO @DATA(ld_keydt).


SELECT single MOLGA
FROM T001P
INTO @DATA(ld_molga).


SELECT single SUBTY
FROM PREL
INTO @DATA(ld_subty).


SELECT single ZEINH
FROM T549R
INTO @DATA(ld_zeinh).
. CALL FUNCTION 'EXIT_SAPLPARA_001' EXPORTING * tclas = ld_tclas * pernr = ld_pernr * keydt = ld_keydt molga = ld_molga * subty = ld_subty * zeinh = ld_zeinh IMPORTING num_periods = ld_num_periods EXCEPTIONS USE_STANDARD = 1 CUSTOMER_ERROR = 2 . " EXIT_SAPLPARA_001
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_num_periods  TYPE HRBP_NUMBER_OF_PERIODS_STRCT ,
ld_tclas  TYPE PSPAR-TCLAS ,
ld_pernr  TYPE PREL-PERNR ,
ld_keydt  TYPE PREL-BEGDA ,
ld_molga  TYPE T001P-MOLGA ,
ld_subty  TYPE PREL-SUBTY ,
ld_zeinh  TYPE T549R-ZEINH .


ld_tclas = some text here

SELECT single PERNR
FROM PREL
INTO ld_pernr.


SELECT single BEGDA
FROM PREL
INTO ld_keydt.


SELECT single MOLGA
FROM T001P
INTO ld_molga.


SELECT single SUBTY
FROM PREL
INTO ld_subty.


SELECT single ZEINH
FROM T549R
INTO ld_zeinh.

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 EXIT_SAPLPARA_001 or its description.