PFL_CHECK_SINGLE_VALUE 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 PFL_CHECK_SINGLE_VALUE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
SPFC
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'PFL_CHECK_SINGLE_VALUE' "
EXPORTING
parname = " tpfet-parname Parameter name
parvalue = " tpfyvalue-value Parameter value
partype = " btch0000-char1 Parameter type
* on_all_hosts = 'X' " btch0000-char1
TABLES
* dtab = " tpfet
prot = " tpfckprot
EXCEPTIONS
GET_PARAMETER_INFO_FAILED = 1 " No parameter information available
PARAMETER_NAME_MISSING = 2 " Parameter name missing
PARAMETER_TYPE_MISSING = 3 " Parameter name missing
UNKNOWN_PARAMETER = 4 " Unknown parameter name
REPLACE_MACRO_FAILED = 5 " Macro in parameter value cannot be replaced
BRACKET_MISSING = 6 " Bracket missing for macro
MACRO_NOT_FOUND = 7 " Macro in parameter value not found
PFL_AUTHORIZATION_MISSING = 8 "
. " PFL_CHECK_SINGLE_VALUE
The ABAP code below is a full code listing to execute function module PFL_CHECK_SINGLE_VALUE 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).
| it_dtab | TYPE STANDARD TABLE OF TPFET,"TABLES PARAM |
| wa_dtab | LIKE LINE OF it_dtab , |
| it_prot | TYPE STANDARD TABLE OF TPFCKPROT,"TABLES PARAM |
| wa_prot | LIKE LINE OF it_prot . |
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_parname | TYPE TPFET-PARNAME , |
| it_dtab | TYPE STANDARD TABLE OF TPFET , |
| wa_dtab | LIKE LINE OF it_dtab, |
| ld_parvalue | TYPE TPFYVALUE-VALUE , |
| it_prot | TYPE STANDARD TABLE OF TPFCKPROT , |
| wa_prot | LIKE LINE OF it_prot, |
| ld_partype | TYPE BTCH0000-CHAR1 , |
| ld_on_all_hosts | TYPE BTCH0000-CHAR1 . |
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 PFL_CHECK_SINGLE_VALUE or its description.