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
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
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).
| ld_num_periods | TYPE HRBP_NUMBER_OF_PERIODS_STRCT . |
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 . |
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.
EXIT_SAPLPARA_001 - Exit to Determine the Number of Periods (Feature 'PFREQ') EXIT_SAPLOXDEP_001 - EXIT_SAPLORF3_005 - Further Extractors (especially TAT / EC) EXIT_SAPLORF3_004 - Assign IP to Material by external definition EXIT_SAPLORF3_003 - User Exit for calc. of ext. ORF Model EXIT_SAPLORBF_002 - Enhance Project-Related Incoming Orders: Results Modification